Skip to content

Commit

Permalink
ci: Add the scalars that doesn't exist in GraphQL, add type Query as …
Browse files Browse the repository at this point in the history
…expected in introspection query
  • Loading branch information
banasa44 committed Mar 14, 2024
1 parent 19f4c42 commit a05d0e3
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions packages/subgraph/schema.graphql
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# This is just for generating introspection query purposes.
" Byte array, represented as a hexadecimal string. Commonly used for Ethereum hashes and addresses. "
scalar Bytes
" Large integers. Used for Ethereum's `uint32`, `int64`, `uint64`, ..., `uint25`6 types. Note: Everything below `uint32`, such as `int32`, `uint24` or `int8` is represented as `i32`. "
scalar BigInt
" Query type, required to generate introspection query. "
type Query @entity {
id: ID!
}

# Types

# Token
Expand Down

0 comments on commit a05d0e3

Please sign in to comment.