watcher-ts/packages/graph-node/test/subgraph/example1/schema.graphql

16 lines
254 B
GraphQL
Raw Normal View History

enum EnumType {
choice1
choice2
}
type ExampleEntity @entity {
id: ID!
count: BigInt!
paramString: String! # string
paramInt: Int! # uint8
paramBoolean: Boolean!
paramBytes: Bytes!
paramEnum: EnumType!
paramBigDecimal: BigDecimal!
}