Skip to content

Commit

Permalink
feat: update gql schema
Browse files Browse the repository at this point in the history
  • Loading branch information
Space-Bean committed Sep 19, 2024
1 parent af46737 commit ec5d64c
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 26 deletions.
46 changes: 20 additions & 26 deletions projects/ui/src/graph/graphql.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -128859,6 +128859,18 @@
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "proposalsCount1d",
"description": null,
"args": [],
"type": {
"kind": "SCALAR",
"name": "Int",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "proposalsCount7d",
"description": null,
Expand Down Expand Up @@ -166564,9 +166576,7 @@
"name": "derivedFrom",
"description": "creates a virtual field on the entity that may be queried but cannot be set manually through the mappings API.",
"isRepeatable": false,
"locations": [
"FIELD_DEFINITION"
],
"locations": ["FIELD_DEFINITION"],
"args": [
{
"name": "field",
Expand All @@ -166590,20 +166600,14 @@
"name": "entity",
"description": "Marks the GraphQL type as indexable entity. Each type that should be an entity is required to be annotated with this directive.",
"isRepeatable": false,
"locations": [
"OBJECT"
],
"locations": ["OBJECT"],
"args": []
},
{
"name": "include",
"description": "Directs the executor to include this field or fragment only when the `if` argument is true.",
"isRepeatable": false,
"locations": [
"FIELD",
"FRAGMENT_SPREAD",
"INLINE_FRAGMENT"
],
"locations": ["FIELD", "FRAGMENT_SPREAD", "INLINE_FRAGMENT"],
"args": [
{
"name": "if",
Expand All @@ -166627,20 +166631,14 @@
"name": "oneOf",
"description": "Indicates exactly one field must be supplied and this field must not be `null`.",
"isRepeatable": false,
"locations": [
"INPUT_OBJECT"
],
"locations": ["INPUT_OBJECT"],
"args": []
},
{
"name": "skip",
"description": "Directs the executor to skip this field or fragment when the `if` argument is true.",
"isRepeatable": false,
"locations": [
"FIELD",
"FRAGMENT_SPREAD",
"INLINE_FRAGMENT"
],
"locations": ["FIELD", "FRAGMENT_SPREAD", "INLINE_FRAGMENT"],
"args": [
{
"name": "if",
Expand All @@ -166664,9 +166662,7 @@
"name": "specifiedBy",
"description": "Exposes a URL that specifies the behavior of this scalar.",
"isRepeatable": false,
"locations": [
"SCALAR"
],
"locations": ["SCALAR"],
"args": [
{
"name": "url",
Expand All @@ -166690,9 +166686,7 @@
"name": "subgraphId",
"description": "Defined a Subgraph ID for an object type",
"isRepeatable": false,
"locations": [
"OBJECT"
],
"locations": ["OBJECT"],
"args": [
{
"name": "id",
Expand All @@ -166714,4 +166708,4 @@
}
]
}
}
}
1 change: 1 addition & 0 deletions projects/ui/src/graph/schema-snapshot1.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,7 @@ type Space {
plugins: Any
private: Boolean
proposalsCount: Int
proposalsCount1d: Int
proposalsCount7d: Int
rank: Float
skin: String
Expand Down

0 comments on commit ec5d64c

Please sign in to comment.