@graphprotocol/graph-cli
Version:
CLI for building for and deploying to The Graph
61 lines (52 loc) • 1.04 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
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 Graft {
base: String!
block: BigInt!
}
type IndexerHints {
prune: StringOrBigInt
}
type DataSource {
kind: String!
name: String!
network: String
source: SubstreamsSource!
mapping: SubstreamMapping!
}
type SubstreamsSource {
package: SubstreamsPackage!
startBlock: BigInt
}
type SubstreamsPackage {
moduleName: String!
file: String!
params: String
}
type SubstreamMapping {
apiVersion: String!
kind: String!
file: File
handler: String
}