mirror of
https://github.com/Instadapp/Swap-Aggregator-Subgraph.git
synced 2024-07-29 21:57:12 +00:00
14 lines
201 B
GraphQL
14 lines
201 B
GraphQL
type NewGravatar @entity {
|
|
id: ID!
|
|
owner: Bytes!
|
|
displayName: String!
|
|
imageUrl: String!
|
|
}
|
|
|
|
type UpdatedGravatar @entity {
|
|
id: ID!
|
|
owner: Bytes!
|
|
displayName: String!
|
|
imageUrl: String!
|
|
}
|