mirror of
https://github.com/status-im/community-dapp.git
synced 2025-02-23 19:48:27 +00:00
13 lines
203 B
GraphQL
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
|
||
|
}
|