@graphprotocol/graph-cli
Version:
CLI for building for and deploying to The Graph
87 lines (73 loc) • 1.42 kB
Plain Text
# Each referenced type's in any of the types below must be listed
# here either as `scalar` or `type` for the validation code to work
# properly.
#
# That's why `String` is listed as a scalar even though it's built-in
# GraphQL basic types.
scalar String
scalar File
scalar BigInt
scalar JSON
union StringOrBigInt = String | BigInt
type SubgraphManifest {
specVersion: String!
features: [String!]
schema: Schema!
description: String
repository: String
graft: Graft
dataSources: [DataSource!]!
indexerHints: IndexerHints
}
type Schema {
file: File!
}
type IndexerHints {
prune: StringOrBigInt
}
type DataSource {
kind: String!
name: String!
network: String
context: JSON
source: ContractSource!
mapping: ContractMapping!
}
type ContractSource {
startBlock: BigInt
endBlock: BigInt
}
type ContractMapping {
apiVersion: String!
language: String!
file: File!
entities: [String!]!
blockHandlers: [BlockHandler!]
eventHandlers: [EventHandler!]
transactionHandlers: [TransactionHandler!]
messageHandlers: [MessageHandler!]
}
type BlockHandler {
handler: String!
}
enum EventOrigin {
BeginBlock
DeliverTx
EndBlock
}
type EventHandler {
event: String!
origin: EventOrigin
handler: String!
}
type TransactionHandler {
handler: String!
}
type MessageHandler {
message: String!
handler: String!
}
type Graft {
base: String!
block: BigInt!
}