Skip to content
Snippets Groups Projects
Commit 63ae6a08 authored by Vincent Texier's avatar Vincent Texier
Browse files

Fix qraphql schema

parent 316ba078
No related branches found
No related tags found
1 merge request!3WIP: RFC 3 : GraphQL API for Duniter Client
...@@ -379,10 +379,8 @@ The SSL endpoint string is: ...@@ -379,10 +379,8 @@ The SSL endpoint string is:
## API GraphQL Schema ## API GraphQL Schema
```graphql ```graphql
schema { schema {
query: Query query: Query
mutation: Mutation
} }
type Query { type Query {
...@@ -400,30 +398,15 @@ type Summary { ...@@ -400,30 +398,15 @@ type Summary {
forkWindowSize: Int! forkWindowSize: Int!
} }
interface Sandbox { type Sandbox {
size: Int!
free: Int!
}
type IdentitiesSandbox implements Sandbox {
size: Int!
free: Int!
}
type MembershipsSandbox implements Sandbox {
size: Int!
free: Int!
}
type TransactionsSandbox implements Sandbox {
size: Int! size: Int!
free: Int! free: Int!
} }
type Sandboxes { type Sandboxes {
identities: IdentitiesSandbox identities: Sandbox!
memberships: MembershipsSandbox memberships: Sandbox!
transactions: TransactionsSandbox transactions: Sandbox!
} }
``` ```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment