Nodes, objects and properties schema
service.navigator.graphqls
To authenticate API requests, you’ll need an API token. Learn how to generate an access token.
See usage examples in the cloudbeaver-graphql-examples repository.
You can try queries in the built-in GraphQL console, available on your server at https://your-server-address/api/gql/console. This tool lets you test requests directly from your browser.
For a live example, see the demo GraphQL console.
API Endpoints
https://your-server-address/api/gql
Queries
Mutations
Types
Boolean
Description
The Boolean scalar type represents true or false.
Example
"<boolean>"
Condition
Description
Represents a dynamic condition for a property, such as visibility or read-only state
Fields
| Field Name | Description |
|---|---|
expression - String!
|
The logical expression that defines when the condition applies |
conditionType - ConditionType!
|
The type of condition (e.g., HIDE or READ_ONLY) |
Example
{"expression": "<string>", "conditionType": "HIDE"}
ConditionType
Values
| Enum Value | Description |
|---|---|
|
|
hiding property condition |
|
|
restriction for setting a property value |
Example
"HIDE"
DatabaseCatalog
Fields
| Field Name | Description |
|---|---|
catalog - NavigatorNodeInfo!
|
|
schemaList - [NavigatorNodeInfo!]!
|
Example
{
"catalog": NavigatorNodeInfo,
"schemaList": [NavigatorNodeInfo]
}
DatabaseObjectInfo
Fields
| Field Name | Description |
|---|---|
name - String
|
Object name |
description - String
|
Description - optional |
type - String
|
Object type. Java class name in most cases |
properties - [ObjectPropertyInfo]
|
Read object properties. Optional parameter 'ids' filters properties by id. null means all properties. Note: property value reading may take a lot of time so don't read all property values always Examine property meta (features in particular) before reading them |
Arguments
|
|
ordinalPosition - Int
|
|
fullyQualifiedName - String
|
|
overloadedName - String
|
|
uniqueName - String
|
|
state - String
|
|
features - [String!]
|
Features: script, scriptExtended, dataContainer, dataManipulator, entity, schema, catalog |
editors - [String!]
|
Supported editors: ddl, permissions, sourceDeclaration, sourceDefinition |
Example
{
"name": "<string>",
"description": "<string>",
"type": "<string>",
"properties": [ObjectPropertyInfo],
"ordinalPosition": "<int>",
"fullyQualifiedName": "<string>",
"overloadedName": "<string>",
"uniqueName": "<string>",
"state": "<string>",
"features": ["<string>"],
"editors": ["<string>"]
}
DatabaseStructContainers
Fields
| Field Name | Description |
|---|---|
parentNode - NavigatorNodeInfo
|
|
catalogList - [DatabaseCatalog!]!
|
|
schemaList - [NavigatorNodeInfo!]!
|
|
supportsCatalogChange - Boolean!
|
|
supportsSchemaChange - Boolean!
|
|
defaultCatalog - String
|
|
defaultSchema - String
|
Example
{
"parentNode": NavigatorNodeInfo,
"catalogList": [DatabaseCatalog],
"schemaList": [NavigatorNodeInfo],
"supportsCatalogChange": "<boolean>",
"supportsSchemaChange": "<boolean>",
"defaultCatalog": "<string>",
"defaultSchema": "<string>"
}
ID
Description
The ID scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as "4") or integer (such as 4) input value will be accepted as an ID.
Example
"<id>"
Int
Description
The Int scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
Example
"<int>"
Object
Description
Any object (JSON)
Example
"<object>"
ObjectPropertyFilter
ObjectPropertyInfo
Description
Information about the object property used to generate its UI
Fields
| Field Name | Description |
|---|---|
id - String
|
Unique property identifier |
displayName - String
|
Human-readable name |
description - String
|
Property description |
hint - String
|
Usage hint for the property |
category - String
|
Property category (may be used if object has a lot of properties) |
dataType - String
|
Property data type (e.g., int, String) |
value - Object
|
Property value (can be resource-intensive for some properties, e.g., RowCount for tables) |
validValues - [Object]
|
List of allowed values (for enumerable properties) |
defaultValue - Object
|
Default property value |
length - ObjectPropertyLength!
|
Property value length |
features - [String!]!
|
List of supported features (e.g., system, hidden, inherited, foreign, expensive) |
order - Int!
|
Order position |
supportedConfigurationTypes - [String!]
|
Supported configuration types (for driver properties) |
required - Boolean!
|
Is the property required |
scopes - [String!]
|
List of preference scopes (e.g., global, user) |
conditions - [Condition!]
|
Dynamic conditions for the property (e.g., visibility or read-only) |
Example
{
"id": "<string>",
"displayName": "<string>",
"description": "<string>",
"hint": "<string>",
"category": "<string>",
"dataType": "<string>",
"value": "<object>",
"validValues": ["<object>"],
"defaultValue": "<object>",
"length": "TINY",
"features": ["<string>"],
"order": "<int>",
"supportedConfigurationTypes": ["<string>"],
"required": "<boolean>",
"scopes": ["<string>"],
"conditions": [Condition]
}
ObjectPropertyLength
Values
| Enum Value | Description |
|---|---|
|
|
1 character |
|
|
20 characters |
|
|
<= 64 characters |
|
|
Full line length. The default |
|
|
Multi-line long text |
Example
"TINY"
String
Description
The String scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
Example
"<string>"