mirror of
https://github.com/cerc-io/watcher-ts
synced 2025-01-10 13:28:06 +00:00
d247815ce2
* Setup example subgraph. * Implement eth_call in subgraph. * eth-call test stub Co-authored-by: nabarun <nabarun@deepstacksoft.com>
7 lines
113 B
GraphQL
7 lines
113 B
GraphQL
type ExampleEntity @entity {
|
|
id: ID!
|
|
count: BigInt!
|
|
param1: String! # string
|
|
param2: BigInt! # uint256
|
|
}
|