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:
## API GraphQL Schema
```graphql
schema {
query: Query
mutation: Mutation
}
type Query {
......@@ -400,30 +398,15 @@ type Summary {
forkWindowSize: Int!
}
interface 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 {
type Sandbox {
size: Int!
free: Int!
}
type Sandboxes {
identities: IdentitiesSandbox
memberships: MembershipsSandbox
transactions: TransactionsSandbox
identities: Sandbox!
memberships: Sandbox!
transactions: Sandbox!
}
```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment