Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
doc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
nodes
common
doc
Commits
e93b9407
Commit
e93b9407
authored
6 years ago
by
Vincent Texier
Browse files
Options
Downloads
Patches
Plain Diff
Update 0003 RFC GraphQL API for Duniter Clients.md
parent
58074aa3
No related branches found
No related tags found
1 merge request
!3
WIP: RFC 3 : GraphQL API for Duniter Client
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
rfc/0003 RFC GraphQL API for Duniter Clients.md
+51
-0
51 additions, 0 deletions
rfc/0003 RFC GraphQL API for Duniter Clients.md
with
51 additions
and
0 deletions
rfc/0003 RFC GraphQL API for Duniter Clients.md
+
51
−
0
View file @
e93b9407
...
@@ -376,6 +376,57 @@ The SSL endpoint string is:
...
@@ -376,6 +376,57 @@ The SSL endpoint string is:
GVAS [DNS] [IPv4] [IPv6] [PORT] [PATH]
GVAS [DNS] [IPv4] [IPv6] [PORT] [PATH]
## API GraphQL Schema
```
GraphQL
schema {
query: Query
mutation: Mutation
}
type Query {
node: Node
}
type Node {
summary: Summary
sandboxes: Sandboxes
}
type Summary {
software: String!
version: String!
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 {
size: Int!
free: Int!
}
type Sandboxes {
identities: IdentitiesSandbox
memberships: MembershipsSandbox
transactions: TransactionsSandbox
}
```
---
---
End of the document.
End of the document.
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment