Boolean
The Boolean scalar type represents true or false.
It is a fundamental logical type used to represent binary states, flags, and conditional properties.
Schema Definition
scalar Boolean
Member Of
Contract object ● ContractFilter input ● ContractTokenFilter input ● TokenFilter input
Example
query SearchERC721Contracts{
contracts(where: { isERC721: true }) {
entries {
name
}
}
}