2021-08-02 13:42:11 +02:00

13 lines
203 B
GraphQL

type ExampleEntity @entity {
id: ID!
roomId: BigInt! # uint256
voter: Bytes! # address
}
type VotingRoom @entity {
id: ID!
community: Bytes!
type: Int
timestamp: BigInt
result: Boolean
}