Skip to main content

contexts

Creates, updates, deletes, gets or lists a contexts resource.

Overview

Namecontexts
TypeResource
Idconfluent.schema_registry.contexts

Fields

The following fields are returned by SELECT queries:

The contexts.

NameDatatypeDescription
contextstring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_contextsselectoffset, limitRetrieves a list of contexts.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
limitinteger (int32)Pagination size for results. Ignored if negative
offsetinteger (int32)Pagination offset for results

SELECT examples

Retrieves a list of contexts.

SELECT
context
FROM confluent.schema_registry.contexts
WHERE offset = '{{ offset }}'
AND limit = '{{ limit }}'
;