13 lines
203 B
GraphQL
Raw Normal View History

2021-08-02 13:42:11 +02:00
type ExampleEntity @entity {
id: ID!
roomId: BigInt! # uint256
voter: Bytes! # address
}
type VotingRoom @entity {
id: ID!
community: Bytes!
type: Int
timestamp: BigInt
result: Boolean
}