| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 |
- schema {
- query: RootQueryType
- }
- """
- A document containing content from the Briven docs. This is a guide, which might describe a concept, or explain the steps for using or implementing a feature.
- """
- type Guide implements SearchResult {
- """The title of the document"""
- title: String
- """The URL of the document"""
- href: String
- """
- The full content of the document, including all subsections (both those matching and not matching any query string) and possibly more content
- """
- content: String
- """
- The subsections of the document. If the document is returned from a search match, only matching content chunks are returned. For the full content of the original document, use the content field in the parent Guide.
- """
- subsections: SubsectionCollection
- }
- """Document that matches a search query"""
- interface SearchResult {
- """The title of the matching result"""
- title: String
- """The URL of the matching result"""
- href: String
- """The full content of the matching result"""
- content: String
- }
- """
- A collection of content chunks from a larger document in the Briven docs.
- """
- type SubsectionCollection {
- """A list of edges containing nodes in this collection"""
- edges: [SubsectionEdge!]!
- """The nodes in this collection, directly accessible"""
- nodes: [Subsection!]!
- """The total count of items available in this collection"""
- totalCount: Int!
- }
- """An edge in a collection of Subsections"""
- type SubsectionEdge {
- """The Subsection at the end of the edge"""
- node: Subsection!
- }
- """A content chunk taken from a larger document in the Briven docs"""
- type Subsection {
- """The title of the subsection"""
- title: String
- """The URL of the subsection"""
- href: String
- """The content of the subsection"""
- content: String
- }
- """
- A reference document containing a description of a Briven CLI command
- """
- type CLICommandReference implements SearchResult {
- """The title of the document"""
- title: String
- """The URL of the document"""
- href: String
- """The content of the reference document, as text"""
- content: String
- }
- """
- A reference document containing a description of a function from a Briven client library
- """
- type ClientLibraryFunctionReference implements SearchResult {
- """The title of the document"""
- title: String
- """The URL of the document"""
- href: String
- """The content of the reference document, as text"""
- content: String
- """The programming language for which the function is written"""
- language: Language!
- """The name of the function or method"""
- methodName: String
- }
- enum Language {
- JAVASCRIPT
- SWIFT
- DART
- CSHARP
- KOTLIN
- PYTHON
- }
- """A document describing how to troubleshoot an issue when using Briven"""
- type TroubleshootingGuide implements SearchResult {
- """The title of the troubleshooting guide"""
- title: String
- """The URL of the troubleshooting guide"""
- href: String
- """The full content of the troubleshooting guide"""
- content: String
- }
- type RootQueryType {
- """Get the GraphQL schema for this endpoint"""
- schema: String!
- """Search the Briven docs for content matching a query string"""
- searchDocs(query: String!, limit: Int): SearchResultCollection
- """Get the details of an error code returned from a Briven service"""
- error(code: String!, service: Service!): Error
- """Get error codes that can potentially be returned by Briven services"""
- errors(
- """Returns the first n elements from the list"""
- first: Int
- """Returns elements that come after the specified cursor"""
- after: String
- """Returns the last n elements from the list"""
- last: Int
- """Returns elements that come before the specified cursor"""
- before: String
- """Filter errors by a specific Briven service"""
- service: Service
- """Filter errors by a specific error code"""
- code: String
- ): ErrorCollection
- }
- """A collection of search results containing content from Briven docs"""
- type SearchResultCollection {
- """A list of edges containing nodes in this collection"""
- edges: [SearchResultEdge!]!
- """The nodes in this collection, directly accessible"""
- nodes: [SearchResult!]!
- """The total count of items available in this collection"""
- totalCount: Int!
- }
- """An edge in a collection of SearchResults"""
- type SearchResultEdge {
- """The SearchResult at the end of the edge"""
- node: SearchResult!
- }
- """An error returned by a Briven service"""
- type Error {
- """
- The unique code identifying the error. The code is stable, and can be used for string matching during error handling.
- """
- code: String!
- """The Briven service that returns this error."""
- service: Service!
- """The HTTP status code returned with this error."""
- httpStatusCode: Int
- """
- A human-readable message describing the error. The message is not stable, and should not be used for string matching during error handling. Use the code instead.
- """
- message: String
- }
- enum Service {
- AUTH
- REALTIME
- STORAGE
- }
- """A collection of Errors"""
- type ErrorCollection {
- """A list of edges containing nodes in this collection"""
- edges: [ErrorEdge!]!
- """The nodes in this collection, directly accessible"""
- nodes: [Error!]!
- """Pagination information"""
- pageInfo: PageInfo!
- """The total count of items available in this collection"""
- totalCount: Int!
- }
- """An edge in a collection of Errors"""
- type ErrorEdge {
- """The Error at the end of the edge"""
- node: Error!
- """A cursor for use in pagination"""
- cursor: String!
- }
- """Pagination information for a collection"""
- type PageInfo {
- """Whether there are more items after the current page"""
- hasNextPage: Boolean!
- """Whether there are more items before the current page"""
- hasPreviousPage: Boolean!
- """Cursor pointing to the start of the current page"""
- startCursor: String
- """Cursor pointing to the end of the current page"""
- endCursor: String
- }
|