Skip to content

The audiothek_schema classes

This is the complete schema for the audiothek.de GraphQL API

Boolean = sgqlc.types.Boolean module-attribute

DateTime = sgqlc.types.datetime.DateTime module-attribute

Float = sgqlc.types.Float module-attribute

ID = sgqlc.types.ID module-attribute

Int = sgqlc.types.Int module-attribute

String = sgqlc.types.String module-attribute

audiothek_schema = sgqlc.types.Schema() module-attribute

AspectRatio

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
17
18
19
class AspectRatio(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('ASPECT_16x9', 'SQUARE')

__choices__ = ('ASPECT_16x9', 'SQUARE') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

AssetType

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
class AssetType(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('url', 'download_url', 'allow_download',
                       'size', 'title', 'mime_type')
    url = sgqlc.types.Field(sgqlc.types.non_null(URL), graphql_name='url')
    download_url = sgqlc.types.Field(URL, graphql_name='downloadUrl')
    allow_download = sgqlc.types.Field(Boolean, graphql_name='allowDownload')
    size = sgqlc.types.Field(Int, graphql_name='size')
    title = sgqlc.types.Field(String, graphql_name='title')
    mime_type = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='mimeType')

__field_names__ = ('url', 'download_url', 'allow_download', 'size', 'title', 'mime_type') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

allow_download = sgqlc.types.Field(Boolean, graphql_name='allowDownload') class-attribute instance-attribute

download_url = sgqlc.types.Field(URL, graphql_name='downloadUrl') class-attribute instance-attribute

mime_type = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='mimeType') class-attribute instance-attribute

size = sgqlc.types.Field(Int, graphql_name='size') class-attribute instance-attribute

title = sgqlc.types.Field(String, graphql_name='title') class-attribute instance-attribute

url = sgqlc.types.Field(sgqlc.types.non_null(URL), graphql_name='url') class-attribute instance-attribute

AudioBinary

Bases: sgqlc.types.Type, Node

Source code in src/libaudiothek/audiothek_schema.py
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
class AudioBinary(sgqlc.types.Type, Node):
    __schema__ = audiothek_schema
    __field_names__ = ('row_id', 'core_document', 'href', 'available_from', 'available_to', 'title',
                       'adaptivity', 'distribution_type', 'packaging', 'audio_channel', 'audio_bitrate', 'audio_codec')
    row_id = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='rowId')
    core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument')
    href = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='href')
    available_from = sgqlc.types.Field(Datetime, graphql_name='availableFrom')
    available_to = sgqlc.types.Field(Datetime, graphql_name='availableTo')
    title = sgqlc.types.Field(String, graphql_name='title')
    adaptivity = sgqlc.types.Field(String, graphql_name='adaptivity')
    distribution_type = sgqlc.types.Field(
        String, graphql_name='distributionType')
    packaging = sgqlc.types.Field(String, graphql_name='packaging')
    audio_channel = sgqlc.types.Field(String, graphql_name='audioChannel')
    audio_bitrate = sgqlc.types.Field(Int, graphql_name='audioBitrate')
    audio_codec = sgqlc.types.Field(String, graphql_name='audioCodec')

__field_names__ = ('row_id', 'core_document', 'href', 'available_from', 'available_to', 'title', 'adaptivity', 'distribution_type', 'packaging', 'audio_channel', 'audio_bitrate', 'audio_codec') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

adaptivity = sgqlc.types.Field(String, graphql_name='adaptivity') class-attribute instance-attribute

audio_bitrate = sgqlc.types.Field(Int, graphql_name='audioBitrate') class-attribute instance-attribute

audio_channel = sgqlc.types.Field(String, graphql_name='audioChannel') class-attribute instance-attribute

audio_codec = sgqlc.types.Field(String, graphql_name='audioCodec') class-attribute instance-attribute

available_from = sgqlc.types.Field(Datetime, graphql_name='availableFrom') class-attribute instance-attribute

available_to = sgqlc.types.Field(Datetime, graphql_name='availableTo') class-attribute instance-attribute

core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument') class-attribute instance-attribute

distribution_type = sgqlc.types.Field(String, graphql_name='distributionType') class-attribute instance-attribute

href = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='href') class-attribute instance-attribute

packaging = sgqlc.types.Field(String, graphql_name='packaging') class-attribute instance-attribute

row_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='rowId') class-attribute instance-attribute

title = sgqlc.types.Field(String, graphql_name='title') class-attribute instance-attribute

BigInt

Bases: sgqlc.types.Scalar

Source code in src/libaudiothek/audiothek_schema.py
22
23
class BigInt(sgqlc.types.Scalar):
    __schema__ = audiothek_schema

__schema__ = audiothek_schema class-attribute instance-attribute

BigIntFilter

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
class BigIntFilter(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from',
                       'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to')
    is_null = sgqlc.types.Field(Boolean, graphql_name='isNull')
    equal_to = sgqlc.types.Field(BigInt, graphql_name='equalTo')
    not_equal_to = sgqlc.types.Field(BigInt, graphql_name='notEqualTo')
    distinct_from = sgqlc.types.Field(BigInt, graphql_name='distinctFrom')
    not_distinct_from = sgqlc.types.Field(
        BigInt, graphql_name='notDistinctFrom')
    in_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null(BigInt)), graphql_name='in')
    not_in = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null(BigInt)), graphql_name='notIn')
    less_than = sgqlc.types.Field(BigInt, graphql_name='lessThan')
    less_than_or_equal_to = sgqlc.types.Field(
        BigInt, graphql_name='lessThanOrEqualTo')
    greater_than = sgqlc.types.Field(BigInt, graphql_name='greaterThan')
    greater_than_or_equal_to = sgqlc.types.Field(
        BigInt, graphql_name='greaterThanOrEqualTo')

__field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

distinct_from = sgqlc.types.Field(BigInt, graphql_name='distinctFrom') class-attribute instance-attribute

equal_to = sgqlc.types.Field(BigInt, graphql_name='equalTo') class-attribute instance-attribute

greater_than = sgqlc.types.Field(BigInt, graphql_name='greaterThan') class-attribute instance-attribute

greater_than_or_equal_to = sgqlc.types.Field(BigInt, graphql_name='greaterThanOrEqualTo') class-attribute instance-attribute

in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(BigInt)), graphql_name='in') class-attribute instance-attribute

is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') class-attribute instance-attribute

less_than = sgqlc.types.Field(BigInt, graphql_name='lessThan') class-attribute instance-attribute

less_than_or_equal_to = sgqlc.types.Field(BigInt, graphql_name='lessThanOrEqualTo') class-attribute instance-attribute

not_distinct_from = sgqlc.types.Field(BigInt, graphql_name='notDistinctFrom') class-attribute instance-attribute

not_equal_to = sgqlc.types.Field(BigInt, graphql_name='notEqualTo') class-attribute instance-attribute

not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(BigInt)), graphql_name='notIn') class-attribute instance-attribute

BigIntFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
313
314
315
316
317
318
319
320
321
322
class BigIntFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('eq', 'ne', 'in_', 'gt', 'gte', 'lt', 'lte')
    eq = sgqlc.types.Field(BigInt, graphql_name='eq')
    ne = sgqlc.types.Field(BigInt, graphql_name='ne')
    in_ = sgqlc.types.Field(sgqlc.types.list_of(BigInt), graphql_name='in')
    gt = sgqlc.types.Field(BigInt, graphql_name='gt')
    gte = sgqlc.types.Field(BigInt, graphql_name='gte')
    lt = sgqlc.types.Field(BigInt, graphql_name='lt')
    lte = sgqlc.types.Field(BigInt, graphql_name='lte')

__field_names__ = ('eq', 'ne', 'in_', 'gt', 'gte', 'lt', 'lte') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

eq = sgqlc.types.Field(BigInt, graphql_name='eq') class-attribute instance-attribute

gt = sgqlc.types.Field(BigInt, graphql_name='gt') class-attribute instance-attribute

gte = sgqlc.types.Field(BigInt, graphql_name='gte') class-attribute instance-attribute

in_ = sgqlc.types.Field(sgqlc.types.list_of(BigInt), graphql_name='in') class-attribute instance-attribute

lt = sgqlc.types.Field(BigInt, graphql_name='lt') class-attribute instance-attribute

lte = sgqlc.types.Field(BigInt, graphql_name='lte') class-attribute instance-attribute

ne = sgqlc.types.Field(BigInt, graphql_name='ne') class-attribute instance-attribute

Board

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
class Board(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('tracking', 'id', 'title', 'image', 'sections', 'widgets', 'sharing_url',
                       'recent_items', 'recent_items_list', 'program_sets', 'program_sets_list')
    tracking = sgqlc.types.Field(JSON, graphql_name='tracking')
    id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id')
    title = sgqlc.types.Field(String, graphql_name='title')
    image = sgqlc.types.Field('ImageType', graphql_name='image')
    sections = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('Section')), graphql_name='sections', args=sgqlc.types.ArgDict((
        ('hide_unresolved_teasers', sgqlc.types.Arg(
            Boolean, graphql_name='hideUnresolvedTeasers', default=True)),
        ('hide_personalizied_sections', sgqlc.types.Arg(
            Boolean, graphql_name='hidePersonaliziedSections', default=False)),
        ('hide_errors', sgqlc.types.Arg(
            Boolean, graphql_name='hideErrors', default=True)),
        ('limit', sgqlc.types.Arg(Int, graphql_name='limit', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=0)),
    ))
    )
    widgets = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null('SophoraWidget')), graphql_name='widgets')
    sharing_url = sgqlc.types.Field(URL, graphql_name='sharingUrl')
    recent_items = sgqlc.types.Field(sgqlc.types.non_null('ItemsConnection'), graphql_name='recentItems', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(
            sgqlc.types.non_null(ItemsOrderBy)), graphql_name='orderBy', default=None)),
        ('condition', sgqlc.types.Arg(ItemCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(ItemFilter, graphql_name='filter', default=None)),
    ))
    )
    recent_items_list = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('Item')), graphql_name='recentItemsList', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(
            sgqlc.types.non_null(ItemsOrderBy)), graphql_name='orderBy', default=None)),
        ('condition', sgqlc.types.Arg(ItemCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(ItemFilter, graphql_name='filter', default=None)),
    ))
    )
    program_sets = sgqlc.types.Field(sgqlc.types.non_null('EditorialCategoryProgramSetsManyToManyConnection'), graphql_name='programSets', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            ProgramSetsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))),
        ('condition', sgqlc.types.Arg(ProgramSetCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(ProgramSetFilter,
         graphql_name='filter', default=None)),
    ))
    )
    program_sets_list = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ProgramSet'))), graphql_name='programSetsList', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            ProgramSetsOrderBy)), graphql_name='orderBy', default=None)),
        ('condition', sgqlc.types.Arg(ProgramSetCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(ProgramSetFilter,
         graphql_name='filter', default=None)),
    ))
    )

__field_names__ = ('tracking', 'id', 'title', 'image', 'sections', 'widgets', 'sharing_url', 'recent_items', 'recent_items_list', 'program_sets', 'program_sets_list') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') class-attribute instance-attribute

image = sgqlc.types.Field('ImageType', graphql_name='image') class-attribute instance-attribute

program_sets = sgqlc.types.Field(sgqlc.types.non_null('EditorialCategoryProgramSetsManyToManyConnection'), graphql_name='programSets', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProgramSetsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC'))), ('condition', sgqlc.types.Arg(ProgramSetCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(ProgramSetFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

program_sets_list = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ProgramSet'))), graphql_name='programSetsList', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProgramSetsOrderBy)), graphql_name='orderBy', default=None)), ('condition', sgqlc.types.Arg(ProgramSetCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(ProgramSetFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

recent_items = sgqlc.types.Field(sgqlc.types.non_null('ItemsConnection'), graphql_name='recentItems', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ItemsOrderBy)), graphql_name='orderBy', default=None)), ('condition', sgqlc.types.Arg(ItemCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(ItemFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

recent_items_list = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('Item')), graphql_name='recentItemsList', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ItemsOrderBy)), graphql_name='orderBy', default=None)), ('condition', sgqlc.types.Arg(ItemCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(ItemFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

sections = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('Section')), graphql_name='sections', args=sgqlc.types.ArgDict((('hide_unresolved_teasers', sgqlc.types.Arg(Boolean, graphql_name='hideUnresolvedTeasers', default=True)), ('hide_personalizied_sections', sgqlc.types.Arg(Boolean, graphql_name='hidePersonaliziedSections', default=False)), ('hide_errors', sgqlc.types.Arg(Boolean, graphql_name='hideErrors', default=True)), ('limit', sgqlc.types.Arg(Int, graphql_name='limit', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=0))))) class-attribute instance-attribute

sharing_url = sgqlc.types.Field(URL, graphql_name='sharingUrl') class-attribute instance-attribute

title = sgqlc.types.Field(String, graphql_name='title') class-attribute instance-attribute

tracking = sgqlc.types.Field(JSON, graphql_name='tracking') class-attribute instance-attribute

widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SophoraWidget')), graphql_name='widgets') class-attribute instance-attribute

Bookmark

Bases: sgqlc.types.Type, BookmarkInterface

Source code in src/libaudiothek/audiothek_schema.py
3986
3987
3988
class Bookmark(sgqlc.types.Type, BookmarkInterface):
    __schema__ = audiothek_schema
    __field_names__ = ()

__field_names__ = () class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

BookmarkConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
class BookmarkConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('count', 'edges', 'nodes', 'page_info')
    count = sgqlc.types.Field(Int, graphql_name='count')
    edges = sgqlc.types.Field(sgqlc.types.list_of(
        'BookmarkEdge'), graphql_name='edges')
    nodes = sgqlc.types.Field(sgqlc.types.list_of(
        'BookmarkInterface'), graphql_name='nodes')
    page_info = sgqlc.types.Field(sgqlc.types.non_null(
        'PageInfo'), graphql_name='pageInfo')

__field_names__ = ('count', 'edges', 'nodes', 'page_info') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

count = sgqlc.types.Field(Int, graphql_name='count') class-attribute instance-attribute

edges = sgqlc.types.Field(sgqlc.types.list_of('BookmarkEdge'), graphql_name='edges') class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.list_of('BookmarkInterface'), graphql_name='nodes') class-attribute instance-attribute

page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') class-attribute instance-attribute

BookmarkConnectionFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
325
326
327
328
329
330
331
332
class BookmarkConnectionFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('bookmarked_at', 'created_at', 'modified_at', 'empty')
    bookmarked_at = sgqlc.types.Field(
        'DateFilterB', graphql_name='bookmarkedAt')
    created_at = sgqlc.types.Field('DateFilterB', graphql_name='createdAt')
    modified_at = sgqlc.types.Field('DateFilterB', graphql_name='modifiedAt')
    empty = sgqlc.types.Field('BooleanFilterB', graphql_name='empty')

__field_names__ = ('bookmarked_at', 'created_at', 'modified_at', 'empty') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

bookmarked_at = sgqlc.types.Field('DateFilterB', graphql_name='bookmarkedAt') class-attribute instance-attribute

created_at = sgqlc.types.Field('DateFilterB', graphql_name='createdAt') class-attribute instance-attribute

empty = sgqlc.types.Field('BooleanFilterB', graphql_name='empty') class-attribute instance-attribute

modified_at = sgqlc.types.Field('DateFilterB', graphql_name='modifiedAt') class-attribute instance-attribute

BookmarkCreateInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
335
336
337
338
339
340
341
class BookmarkCreateInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('type', 'bookmarked_at', 'item')
    type = sgqlc.types.Field(String, graphql_name='type')
    bookmarked_at = sgqlc.types.Field(DateTime, graphql_name='bookmarkedAt')
    item = sgqlc.types.Field(sgqlc.types.non_null(
        'ItemCreateInput'), graphql_name='item')

__field_names__ = ('type', 'bookmarked_at', 'item') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

bookmarked_at = sgqlc.types.Field(DateTime, graphql_name='bookmarkedAt') class-attribute instance-attribute

item = sgqlc.types.Field(sgqlc.types.non_null('ItemCreateInput'), graphql_name='item') class-attribute instance-attribute

type = sgqlc.types.Field(String, graphql_name='type') class-attribute instance-attribute

BookmarkEdge

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2037
2038
2039
2040
2041
2042
class BookmarkEdge(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('cursor', 'node')
    cursor = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='cursor')
    node = sgqlc.types.Field('BookmarkInterface', graphql_name='node')

__field_names__ = ('cursor', 'node') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

cursor = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='cursor') class-attribute instance-attribute

node = sgqlc.types.Field('BookmarkInterface', graphql_name='node') class-attribute instance-attribute

BookmarkFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
344
345
346
347
348
349
350
class BookmarkFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('bookmarked_at', 'created_at', 'modified_at')
    bookmarked_at = sgqlc.types.Field(
        'DateFilterB', graphql_name='bookmarkedAt')
    created_at = sgqlc.types.Field('DateFilterB', graphql_name='createdAt')
    modified_at = sgqlc.types.Field('DateFilterB', graphql_name='modifiedAt')

__field_names__ = ('bookmarked_at', 'created_at', 'modified_at') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

bookmarked_at = sgqlc.types.Field('DateFilterB', graphql_name='bookmarkedAt') class-attribute instance-attribute

created_at = sgqlc.types.Field('DateFilterB', graphql_name='createdAt') class-attribute instance-attribute

modified_at = sgqlc.types.Field('DateFilterB', graphql_name='modifiedAt') class-attribute instance-attribute

BookmarkInterface

Bases: sgqlc.types.Interface

Source code in src/libaudiothek/audiothek_schema.py
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
class BookmarkInterface(sgqlc.types.Interface):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'base_id_prefix', 'belongs_to',
                       'bookmarked_at', 'created_at', 'item', 'modified_at')
    id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id')
    base_id_prefix = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='baseIdPrefix')
    belongs_to = sgqlc.types.Field(
        'BookmarkListInterface', graphql_name='belongsTo')
    bookmarked_at = sgqlc.types.Field(DateTime, graphql_name='bookmarkedAt')
    created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
    item = sgqlc.types.Field('Item', graphql_name='item')
    modified_at = sgqlc.types.Field(DateTime, graphql_name='modifiedAt')

__field_names__ = ('id', 'base_id_prefix', 'belongs_to', 'bookmarked_at', 'created_at', 'item', 'modified_at') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

base_id_prefix = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='baseIdPrefix') class-attribute instance-attribute

belongs_to = sgqlc.types.Field('BookmarkListInterface', graphql_name='belongsTo') class-attribute instance-attribute

bookmarked_at = sgqlc.types.Field(DateTime, graphql_name='bookmarkedAt') class-attribute instance-attribute

created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt') class-attribute instance-attribute

id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') class-attribute instance-attribute

item = sgqlc.types.Field('Item', graphql_name='item') class-attribute instance-attribute

modified_at = sgqlc.types.Field(DateTime, graphql_name='modifiedAt') class-attribute instance-attribute

BookmarkList

Bases: sgqlc.types.Type, BookmarkListInterface

Source code in src/libaudiothek/audiothek_schema.py
3991
3992
3993
class BookmarkList(sgqlc.types.Type, BookmarkListInterface):
    __schema__ = audiothek_schema
    __field_names__ = ()

__field_names__ = () class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

BookmarkListConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
class BookmarkListConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('count', 'edges', 'nodes', 'page_info')
    count = sgqlc.types.Field(Int, graphql_name='count')
    edges = sgqlc.types.Field(sgqlc.types.list_of(
        'BookmarkListEdge'), graphql_name='edges')
    nodes = sgqlc.types.Field(sgqlc.types.list_of(
        'BookmarkListInterface'), graphql_name='nodes')
    page_info = sgqlc.types.Field(sgqlc.types.non_null(
        'PageInfo'), graphql_name='pageInfo')

__field_names__ = ('count', 'edges', 'nodes', 'page_info') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

count = sgqlc.types.Field(Int, graphql_name='count') class-attribute instance-attribute

edges = sgqlc.types.Field(sgqlc.types.list_of('BookmarkListEdge'), graphql_name='edges') class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.list_of('BookmarkListInterface'), graphql_name='nodes') class-attribute instance-attribute

page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') class-attribute instance-attribute

BookmarkListConnectionFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
353
354
355
356
357
class BookmarkListConnectionFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('empty', 'contains')
    empty = sgqlc.types.Field('BooleanFilterB', graphql_name='empty')
    contains = sgqlc.types.Field(ID, graphql_name='contains')

__field_names__ = ('empty', 'contains') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

contains = sgqlc.types.Field(ID, graphql_name='contains') class-attribute instance-attribute

empty = sgqlc.types.Field('BooleanFilterB', graphql_name='empty') class-attribute instance-attribute

BookmarkListCreateInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
360
361
362
363
364
365
366
367
class BookmarkListCreateInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'type', 'entries')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    type = sgqlc.types.Field(String, graphql_name='type')
    entries = sgqlc.types.Field(sgqlc.types.non_null(
        sgqlc.types.list_of(BookmarkCreateInput)), graphql_name='entries')

__field_names__ = ('client_mutation_id', 'type', 'entries') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

entries = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(BookmarkCreateInput)), graphql_name='entries') class-attribute instance-attribute

type = sgqlc.types.Field(String, graphql_name='type') class-attribute instance-attribute

BookmarkListEdge

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2072
2073
2074
2075
2076
2077
class BookmarkListEdge(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('cursor', 'node')
    cursor = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='cursor')
    node = sgqlc.types.Field('BookmarkListInterface', graphql_name='node')

__field_names__ = ('cursor', 'node') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

cursor = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='cursor') class-attribute instance-attribute

node = sgqlc.types.Field('BookmarkListInterface', graphql_name='node') class-attribute instance-attribute

BookmarkListEntryListInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
370
371
372
373
374
375
376
377
378
class BookmarkListEntryListInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'entry', 'bookmark_list')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    entry = sgqlc.types.Field(sgqlc.types.non_null(
        BookmarkCreateInput), graphql_name='entry')
    bookmark_list = sgqlc.types.Field(
        sgqlc.types.non_null(ID), graphql_name='bookmarkList')

__field_names__ = ('client_mutation_id', 'entry', 'bookmark_list') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

bookmark_list = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='bookmarkList') class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

entry = sgqlc.types.Field(sgqlc.types.non_null(BookmarkCreateInput), graphql_name='entry') class-attribute instance-attribute

BookmarkListFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
381
382
383
384
385
386
387
388
class BookmarkListFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('created_at', 'entries', 'modified_at', 'user')
    created_at = sgqlc.types.Field('DateFilterB', graphql_name='createdAt')
    entries = sgqlc.types.Field(
        BookmarkConnectionFilterB, graphql_name='entries')
    modified_at = sgqlc.types.Field('DateFilterB', graphql_name='modifiedAt')
    user = sgqlc.types.Field('EndUserRelationFilterB', graphql_name='user')

__field_names__ = ('created_at', 'entries', 'modified_at', 'user') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

created_at = sgqlc.types.Field('DateFilterB', graphql_name='createdAt') class-attribute instance-attribute

entries = sgqlc.types.Field(BookmarkConnectionFilterB, graphql_name='entries') class-attribute instance-attribute

modified_at = sgqlc.types.Field('DateFilterB', graphql_name='modifiedAt') class-attribute instance-attribute

user = sgqlc.types.Field('EndUserRelationFilterB', graphql_name='user') class-attribute instance-attribute

BookmarkListInterface

Bases: sgqlc.types.Interface

Source code in src/libaudiothek/audiothek_schema.py
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
class BookmarkListInterface(sgqlc.types.Interface):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'base_id_prefix', 'created_at',
                       'entries', 'modified_at', 'user')
    id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id')
    base_id_prefix = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='baseIdPrefix')
    created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
    entries = sgqlc.types.Field(BookmarkConnection, graphql_name='entries', args=sgqlc.types.ArgDict((
        ('after', sgqlc.types.Arg(String, graphql_name='after', default=None)),
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('before', sgqlc.types.Arg(String, graphql_name='before', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('filter', sgqlc.types.Arg(BookmarkFilterB,
         graphql_name='filter', default=None)),
        ('order_by', sgqlc.types.Arg(BookmarkSortOrder,
         graphql_name='orderBy', default=None)),
    ))
    )
    modified_at = sgqlc.types.Field(DateTime, graphql_name='modifiedAt')
    user = sgqlc.types.Field('EndUserInterface', graphql_name='user')

__field_names__ = ('id', 'base_id_prefix', 'created_at', 'entries', 'modified_at', 'user') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

base_id_prefix = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='baseIdPrefix') class-attribute instance-attribute

created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt') class-attribute instance-attribute

entries = sgqlc.types.Field(BookmarkConnection, graphql_name='entries', args=sgqlc.types.ArgDict((('after', sgqlc.types.Arg(String, graphql_name='after', default=None)), ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('before', sgqlc.types.Arg(String, graphql_name='before', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('filter', sgqlc.types.Arg(BookmarkFilterB, graphql_name='filter', default=None)), ('order_by', sgqlc.types.Arg(BookmarkSortOrder, graphql_name='orderBy', default=None))))) class-attribute instance-attribute

id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') class-attribute instance-attribute

modified_at = sgqlc.types.Field(DateTime, graphql_name='modifiedAt') class-attribute instance-attribute

user = sgqlc.types.Field('EndUserInterface', graphql_name='user') class-attribute instance-attribute

BookmarkListPayload

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2103
2104
2105
2106
2107
2108
2109
class BookmarkListPayload(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'changed_bookmark_list')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    changed_bookmark_list = sgqlc.types.Field(
        'BookmarkList', graphql_name='changedBookmarkList')

__field_names__ = ('client_mutation_id', 'changed_bookmark_list') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

changed_bookmark_list = sgqlc.types.Field('BookmarkList', graphql_name='changedBookmarkList') class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

BookmarkListRelationFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
391
392
393
394
395
class BookmarkListRelationFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'exists')
    id = sgqlc.types.Field('IDFilterB', graphql_name='id')
    exists = sgqlc.types.Field('BooleanFilterB', graphql_name='exists')

__field_names__ = ('id', 'exists') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

exists = sgqlc.types.Field('BooleanFilterB', graphql_name='exists') class-attribute instance-attribute

id = sgqlc.types.Field('IDFilterB', graphql_name='id') class-attribute instance-attribute

BookmarkListRemoveAllListInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
398
399
400
401
402
403
404
class BookmarkListRemoveAllListInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'bookmark_list')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    bookmark_list = sgqlc.types.Field(
        sgqlc.types.non_null(ID), graphql_name='bookmarkList')

__field_names__ = ('client_mutation_id', 'bookmark_list') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

bookmark_list = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='bookmarkList') class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

BookmarkListSortOrder

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
26
27
28
29
class BookmarkListSortOrder(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('CREATEDAT_ASC', 'CREATEDAT_DESC', 'ENTRIES_BOOKMARKEDAT_ASC', 'ENTRIES_BOOKMARKEDAT_DESC', 'ENTRIES_CREATEDAT_ASC', 'ENTRIES_CREATEDAT_DESC',
                   'ENTRIES_ITEM_ID_ASC', 'ENTRIES_ITEM_ID_DESC', 'ENTRIES_MODIFIEDAT_ASC', 'ENTRIES_MODIFIEDAT_DESC', 'MODIFIEDAT_ASC', 'MODIFIEDAT_DESC')

__choices__ = ('CREATEDAT_ASC', 'CREATEDAT_DESC', 'ENTRIES_BOOKMARKEDAT_ASC', 'ENTRIES_BOOKMARKEDAT_DESC', 'ENTRIES_CREATEDAT_ASC', 'ENTRIES_CREATEDAT_DESC', 'ENTRIES_ITEM_ID_ASC', 'ENTRIES_ITEM_ID_DESC', 'ENTRIES_MODIFIEDAT_ASC', 'ENTRIES_MODIFIEDAT_DESC', 'MODIFIEDAT_ASC', 'MODIFIEDAT_DESC') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

BookmarkListUpdateInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
407
408
409
410
411
412
413
414
class BookmarkListUpdateInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'id', 'entries')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id')
    entries = sgqlc.types.Field(sgqlc.types.list_of(
        BookmarkCreateInput), graphql_name='entries')

__field_names__ = ('client_mutation_id', 'id', 'entries') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

entries = sgqlc.types.Field(sgqlc.types.list_of(BookmarkCreateInput), graphql_name='entries') class-attribute instance-attribute

id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') class-attribute instance-attribute

BookmarkPayload

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2112
2113
2114
2115
2116
2117
2118
class BookmarkPayload(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'changed_bookmark')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    changed_bookmark = sgqlc.types.Field(
        'Bookmark', graphql_name='changedBookmark')

__field_names__ = ('client_mutation_id', 'changed_bookmark') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

changed_bookmark = sgqlc.types.Field('Bookmark', graphql_name='changedBookmark') class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

BookmarkRelationFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
417
418
419
420
421
422
423
class BookmarkRelationFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('bookmarked_at', 'created_at', 'modified_at')
    bookmarked_at = sgqlc.types.Field(
        'DateFilterB', graphql_name='bookmarkedAt')
    created_at = sgqlc.types.Field('DateFilterB', graphql_name='createdAt')
    modified_at = sgqlc.types.Field('DateFilterB', graphql_name='modifiedAt')

__field_names__ = ('bookmarked_at', 'created_at', 'modified_at') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

bookmarked_at = sgqlc.types.Field('DateFilterB', graphql_name='bookmarkedAt') class-attribute instance-attribute

created_at = sgqlc.types.Field('DateFilterB', graphql_name='createdAt') class-attribute instance-attribute

modified_at = sgqlc.types.Field('DateFilterB', graphql_name='modifiedAt') class-attribute instance-attribute

BookmarkRemoveAllListInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
426
427
428
429
430
431
432
class BookmarkRemoveAllListInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'bookmark')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    bookmark = sgqlc.types.Field(
        sgqlc.types.non_null(ID), graphql_name='bookmark')

__field_names__ = ('client_mutation_id', 'bookmark') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

bookmark = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='bookmark') class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

BookmarkSortOrder

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
32
33
34
35
class BookmarkSortOrder(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('BOOKMARKEDAT_ASC', 'BOOKMARKEDAT_DESC', 'CREATEDAT_ASC',
                   'CREATEDAT_DESC', 'ITEM_ID_ASC', 'ITEM_ID_DESC', 'MODIFIEDAT_ASC', 'MODIFIEDAT_DESC')

__choices__ = ('BOOKMARKEDAT_ASC', 'BOOKMARKEDAT_DESC', 'CREATEDAT_ASC', 'CREATEDAT_DESC', 'ITEM_ID_ASC', 'ITEM_ID_DESC', 'MODIFIEDAT_ASC', 'MODIFIEDAT_DESC') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

BookmarkUpdateInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
435
436
437
438
439
440
441
442
class BookmarkUpdateInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'id', 'bookmarked_at', 'item')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id')
    bookmarked_at = sgqlc.types.Field(DateTime, graphql_name='bookmarkedAt')
    item = sgqlc.types.Field('ItemCreateInput', graphql_name='item')

__field_names__ = ('client_mutation_id', 'id', 'bookmarked_at', 'item') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

bookmarked_at = sgqlc.types.Field(DateTime, graphql_name='bookmarkedAt') class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') class-attribute instance-attribute

item = sgqlc.types.Field('ItemCreateInput', graphql_name='item') class-attribute instance-attribute

BooleanFilter

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
class BooleanFilter(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from',
                       'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to')
    is_null = sgqlc.types.Field(Boolean, graphql_name='isNull')
    equal_to = sgqlc.types.Field(Boolean, graphql_name='equalTo')
    not_equal_to = sgqlc.types.Field(Boolean, graphql_name='notEqualTo')
    distinct_from = sgqlc.types.Field(Boolean, graphql_name='distinctFrom')
    not_distinct_from = sgqlc.types.Field(
        Boolean, graphql_name='notDistinctFrom')
    in_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null(Boolean)), graphql_name='in')
    not_in = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null(Boolean)), graphql_name='notIn')
    less_than = sgqlc.types.Field(Boolean, graphql_name='lessThan')
    less_than_or_equal_to = sgqlc.types.Field(
        Boolean, graphql_name='lessThanOrEqualTo')
    greater_than = sgqlc.types.Field(Boolean, graphql_name='greaterThan')
    greater_than_or_equal_to = sgqlc.types.Field(
        Boolean, graphql_name='greaterThanOrEqualTo')

__field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

distinct_from = sgqlc.types.Field(Boolean, graphql_name='distinctFrom') class-attribute instance-attribute

equal_to = sgqlc.types.Field(Boolean, graphql_name='equalTo') class-attribute instance-attribute

greater_than = sgqlc.types.Field(Boolean, graphql_name='greaterThan') class-attribute instance-attribute

greater_than_or_equal_to = sgqlc.types.Field(Boolean, graphql_name='greaterThanOrEqualTo') class-attribute instance-attribute

in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(Boolean)), graphql_name='in') class-attribute instance-attribute

is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') class-attribute instance-attribute

less_than = sgqlc.types.Field(Boolean, graphql_name='lessThan') class-attribute instance-attribute

less_than_or_equal_to = sgqlc.types.Field(Boolean, graphql_name='lessThanOrEqualTo') class-attribute instance-attribute

not_distinct_from = sgqlc.types.Field(Boolean, graphql_name='notDistinctFrom') class-attribute instance-attribute

not_equal_to = sgqlc.types.Field(Boolean, graphql_name='notEqualTo') class-attribute instance-attribute

not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(Boolean)), graphql_name='notIn') class-attribute instance-attribute

BooleanFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
467
468
469
470
471
class BooleanFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('eq', 'ne')
    eq = sgqlc.types.Field(Boolean, graphql_name='eq')
    ne = sgqlc.types.Field(Boolean, graphql_name='ne')

__field_names__ = ('eq', 'ne') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

eq = sgqlc.types.Field(Boolean, graphql_name='eq') class-attribute instance-attribute

ne = sgqlc.types.Field(Boolean, graphql_name='ne') class-attribute instance-attribute

CacheControlScope

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
41
42
43
class CacheControlScope(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('PRIVATE', 'PUBLIC')

__choices__ = ('PRIVATE', 'PUBLIC') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

CategoriesToProgramSet

Bases: sgqlc.types.Type, Node

Source code in src/libaudiothek/audiothek_schema.py
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
class CategoriesToProgramSet(sgqlc.types.Type, Node):
    __schema__ = audiothek_schema
    __field_names__ = ('program_set_core_id', 'category_sophora_id',
                       'program_set_core', 'category_sophora')
    program_set_core_id = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='programSetCoreId')
    category_sophora_id = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='categorySophoraId')
    program_set_core = sgqlc.types.Field(
        'ProgramSet', graphql_name='programSetCore')
    category_sophora = sgqlc.types.Field(
        'EditorialCategory', graphql_name='categorySophora')

__field_names__ = ('program_set_core_id', 'category_sophora_id', 'program_set_core', 'category_sophora') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

category_sophora = sgqlc.types.Field('EditorialCategory', graphql_name='categorySophora') class-attribute instance-attribute

category_sophora_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='categorySophoraId') class-attribute instance-attribute

program_set_core = sgqlc.types.Field('ProgramSet', graphql_name='programSetCore') class-attribute instance-attribute

program_set_core_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='programSetCoreId') class-attribute instance-attribute

CategoriesToProgramSetCondition

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
474
475
476
477
478
479
480
class CategoriesToProgramSetCondition(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('program_set_core_id', 'category_sophora_id')
    program_set_core_id = sgqlc.types.Field(
        String, graphql_name='programSetCoreId')
    category_sophora_id = sgqlc.types.Field(
        String, graphql_name='categorySophoraId')

__field_names__ = ('program_set_core_id', 'category_sophora_id') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

category_sophora_id = sgqlc.types.Field(String, graphql_name='categorySophoraId') class-attribute instance-attribute

program_set_core_id = sgqlc.types.Field(String, graphql_name='programSetCoreId') class-attribute instance-attribute

CategoriesToProgramSetFilter

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
483
484
485
486
487
488
489
490
491
492
493
494
495
496
class CategoriesToProgramSetFilter(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('program_set_core_id',
                       'category_sophora_id', 'and_', 'or_', 'not_')
    program_set_core_id = sgqlc.types.Field(
        'StringFilter', graphql_name='programSetCoreId')
    category_sophora_id = sgqlc.types.Field(
        'StringFilter', graphql_name='categorySophoraId')
    and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(
        'CategoriesToProgramSetFilter')), graphql_name='and')
    or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(
        'CategoriesToProgramSetFilter')), graphql_name='or')
    not_ = sgqlc.types.Field(
        'CategoriesToProgramSetFilter', graphql_name='not')

__field_names__ = ('program_set_core_id', 'category_sophora_id', 'and_', 'or_', 'not_') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('CategoriesToProgramSetFilter')), graphql_name='and') class-attribute instance-attribute

category_sophora_id = sgqlc.types.Field('StringFilter', graphql_name='categorySophoraId') class-attribute instance-attribute

not_ = sgqlc.types.Field('CategoriesToProgramSetFilter', graphql_name='not') class-attribute instance-attribute

or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('CategoriesToProgramSetFilter')), graphql_name='or') class-attribute instance-attribute

program_set_core_id = sgqlc.types.Field('StringFilter', graphql_name='programSetCoreId') class-attribute instance-attribute

CategoriesToProgramSetsConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
class CategoriesToProgramSetsConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('nodes', 'edges', 'page_info', 'total_count')
    nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(
        sgqlc.types.non_null('CategoriesToProgramSet'))), graphql_name='nodes')
    edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(
        sgqlc.types.non_null('CategoriesToProgramSetsEdge'))), graphql_name='edges')
    page_info = sgqlc.types.Field(sgqlc.types.non_null(
        'PageInfo'), graphql_name='pageInfo')
    total_count = sgqlc.types.Field(
        sgqlc.types.non_null(Int), graphql_name='totalCount')

__field_names__ = ('nodes', 'edges', 'page_info', 'total_count') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('CategoriesToProgramSetsEdge'))), graphql_name='edges') class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('CategoriesToProgramSet'))), graphql_name='nodes') class-attribute instance-attribute

page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') class-attribute instance-attribute

total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') class-attribute instance-attribute

CategoriesToProgramSetsEdge

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2134
2135
2136
2137
2138
2139
class CategoriesToProgramSetsEdge(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('cursor', 'node')
    cursor = sgqlc.types.Field(Cursor, graphql_name='cursor')
    node = sgqlc.types.Field(sgqlc.types.non_null(
        'CategoriesToProgramSet'), graphql_name='node')

__field_names__ = ('cursor', 'node') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') class-attribute instance-attribute

node = sgqlc.types.Field(sgqlc.types.non_null('CategoriesToProgramSet'), graphql_name='node') class-attribute instance-attribute

CategoriesToProgramSetsOrderBy

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
46
47
48
49
class CategoriesToProgramSetsOrderBy(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('CATEGORY_SOPHORA_ID_ASC', 'CATEGORY_SOPHORA_ID_DESC', 'NATURAL',
                   'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'PROGRAM_SET_CORE_ID_ASC', 'PROGRAM_SET_CORE_ID_DESC')

__choices__ = ('CATEGORY_SOPHORA_ID_ASC', 'CATEGORY_SOPHORA_ID_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'PROGRAM_SET_CORE_ID_ASC', 'PROGRAM_SET_CORE_ID_DESC') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

Concept

Bases: sgqlc.types.Type, Node

Source code in src/libaudiothek/audiothek_schema.py
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
class Concept(sgqlc.types.Type, Node):
    __schema__ = audiothek_schema
    __field_names__ = ('item_id', 'concept_source',
                       'data', 'last_updated_at', 'item')
    item_id = sgqlc.types.Field(
        sgqlc.types.non_null(Int), graphql_name='itemId')
    concept_source = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='conceptSource')
    data = sgqlc.types.Field(JSON, graphql_name='data')
    last_updated_at = sgqlc.types.Field(
        sgqlc.types.non_null(Datetime), graphql_name='lastUpdatedAt')
    item = sgqlc.types.Field('Item', graphql_name='item')

__field_names__ = ('item_id', 'concept_source', 'data', 'last_updated_at', 'item') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

concept_source = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='conceptSource') class-attribute instance-attribute

data = sgqlc.types.Field(JSON, graphql_name='data') class-attribute instance-attribute

item = sgqlc.types.Field('Item', graphql_name='item') class-attribute instance-attribute

item_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='itemId') class-attribute instance-attribute

last_updated_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='lastUpdatedAt') class-attribute instance-attribute

ConceptCondition

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
499
500
501
502
503
504
505
class ConceptCondition(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('item_id', 'concept_source', 'data', 'last_updated_at')
    item_id = sgqlc.types.Field(Int, graphql_name='itemId')
    concept_source = sgqlc.types.Field(String, graphql_name='conceptSource')
    data = sgqlc.types.Field(JSON, graphql_name='data')
    last_updated_at = sgqlc.types.Field(Datetime, graphql_name='lastUpdatedAt')

__field_names__ = ('item_id', 'concept_source', 'data', 'last_updated_at') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

concept_source = sgqlc.types.Field(String, graphql_name='conceptSource') class-attribute instance-attribute

data = sgqlc.types.Field(JSON, graphql_name='data') class-attribute instance-attribute

item_id = sgqlc.types.Field(Int, graphql_name='itemId') class-attribute instance-attribute

last_updated_at = sgqlc.types.Field(Datetime, graphql_name='lastUpdatedAt') class-attribute instance-attribute

ConceptFilter

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
class ConceptFilter(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('item_id', 'concept_source', 'data',
                       'last_updated_at', 'and_', 'or_', 'not_')
    item_id = sgqlc.types.Field('IntFilter', graphql_name='itemId')
    concept_source = sgqlc.types.Field(
        'StringFilter', graphql_name='conceptSource')
    data = sgqlc.types.Field('JSONFilter', graphql_name='data')
    last_updated_at = sgqlc.types.Field(
        'DatetimeFilter', graphql_name='lastUpdatedAt')
    and_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null('ConceptFilter')), graphql_name='and')
    or_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null('ConceptFilter')), graphql_name='or')
    not_ = sgqlc.types.Field('ConceptFilter', graphql_name='not')

__field_names__ = ('item_id', 'concept_source', 'data', 'last_updated_at', 'and_', 'or_', 'not_') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ConceptFilter')), graphql_name='and') class-attribute instance-attribute

concept_source = sgqlc.types.Field('StringFilter', graphql_name='conceptSource') class-attribute instance-attribute

data = sgqlc.types.Field('JSONFilter', graphql_name='data') class-attribute instance-attribute

item_id = sgqlc.types.Field('IntFilter', graphql_name='itemId') class-attribute instance-attribute

last_updated_at = sgqlc.types.Field('DatetimeFilter', graphql_name='lastUpdatedAt') class-attribute instance-attribute

not_ = sgqlc.types.Field('ConceptFilter', graphql_name='not') class-attribute instance-attribute

or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ConceptFilter')), graphql_name='or') class-attribute instance-attribute

ConceptsConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
class ConceptsConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('nodes', 'edges', 'page_info', 'total_count')
    nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(
        sgqlc.types.non_null('Concept'))), graphql_name='nodes')
    edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(
        sgqlc.types.non_null('ConceptsEdge'))), graphql_name='edges')
    page_info = sgqlc.types.Field(sgqlc.types.non_null(
        'PageInfo'), graphql_name='pageInfo')
    total_count = sgqlc.types.Field(
        sgqlc.types.non_null(Int), graphql_name='totalCount')

__field_names__ = ('nodes', 'edges', 'page_info', 'total_count') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ConceptsEdge'))), graphql_name='edges') class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Concept'))), graphql_name='nodes') class-attribute instance-attribute

page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') class-attribute instance-attribute

total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') class-attribute instance-attribute

ConceptsEdge

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2155
2156
2157
2158
2159
2160
class ConceptsEdge(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('cursor', 'node')
    cursor = sgqlc.types.Field(Cursor, graphql_name='cursor')
    node = sgqlc.types.Field(sgqlc.types.non_null(
        'Concept'), graphql_name='node')

__field_names__ = ('cursor', 'node') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') class-attribute instance-attribute

node = sgqlc.types.Field(sgqlc.types.non_null('Concept'), graphql_name='node') class-attribute instance-attribute

ConceptsOrderBy

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
52
53
54
55
class ConceptsOrderBy(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('CONCEPT_SOURCE_ASC', 'CONCEPT_SOURCE_DESC', 'DATA_ASC', 'DATA_DESC', 'ITEM_ID_ASC', 'ITEM_ID_DESC',
                   'LAST_UPDATED_AT_ASC', 'LAST_UPDATED_AT_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC')

__choices__ = ('CONCEPT_SOURCE_ASC', 'CONCEPT_SOURCE_DESC', 'DATA_ASC', 'DATA_DESC', 'ITEM_ID_ASC', 'ITEM_ID_DESC', 'LAST_UPDATED_AT_ASC', 'LAST_UPDATED_AT_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

Config

Bases: sgqlc.types.Type, Node

Source code in src/libaudiothek/audiothek_schema.py
4024
4025
4026
4027
4028
4029
4030
class Config(sgqlc.types.Type, Node):
    __schema__ = audiothek_schema
    __field_names__ = ('key', 'value', 'updated_at', 'updated_by')
    key = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='key')
    value = sgqlc.types.Field(JSON, graphql_name='value')
    updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt')
    updated_by = sgqlc.types.Field(String, graphql_name='updatedBy')

__field_names__ = ('key', 'value', 'updated_at', 'updated_by') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

key = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='key') class-attribute instance-attribute

updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') class-attribute instance-attribute

updated_by = sgqlc.types.Field(String, graphql_name='updatedBy') class-attribute instance-attribute

value = sgqlc.types.Field(JSON, graphql_name='value') class-attribute instance-attribute

ConfigCondition

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
525
526
527
528
529
530
531
class ConfigCondition(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('key', 'value', 'updated_at', 'updated_by')
    key = sgqlc.types.Field(String, graphql_name='key')
    value = sgqlc.types.Field(JSON, graphql_name='value')
    updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt')
    updated_by = sgqlc.types.Field(String, graphql_name='updatedBy')

__field_names__ = ('key', 'value', 'updated_at', 'updated_by') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

key = sgqlc.types.Field(String, graphql_name='key') class-attribute instance-attribute

updated_at = sgqlc.types.Field(Datetime, graphql_name='updatedAt') class-attribute instance-attribute

updated_by = sgqlc.types.Field(String, graphql_name='updatedBy') class-attribute instance-attribute

value = sgqlc.types.Field(JSON, graphql_name='value') class-attribute instance-attribute

ConfigFilter

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
534
535
536
537
538
539
540
541
542
543
544
545
546
class ConfigFilter(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('key', 'value', 'updated_at',
                       'updated_by', 'and_', 'or_', 'not_')
    key = sgqlc.types.Field('StringFilter', graphql_name='key')
    value = sgqlc.types.Field('JSONFilter', graphql_name='value')
    updated_at = sgqlc.types.Field('DatetimeFilter', graphql_name='updatedAt')
    updated_by = sgqlc.types.Field('StringFilter', graphql_name='updatedBy')
    and_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null('ConfigFilter')), graphql_name='and')
    or_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null('ConfigFilter')), graphql_name='or')
    not_ = sgqlc.types.Field('ConfigFilter', graphql_name='not')

__field_names__ = ('key', 'value', 'updated_at', 'updated_by', 'and_', 'or_', 'not_') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ConfigFilter')), graphql_name='and') class-attribute instance-attribute

key = sgqlc.types.Field('StringFilter', graphql_name='key') class-attribute instance-attribute

not_ = sgqlc.types.Field('ConfigFilter', graphql_name='not') class-attribute instance-attribute

or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ConfigFilter')), graphql_name='or') class-attribute instance-attribute

updated_at = sgqlc.types.Field('DatetimeFilter', graphql_name='updatedAt') class-attribute instance-attribute

updated_by = sgqlc.types.Field('StringFilter', graphql_name='updatedBy') class-attribute instance-attribute

value = sgqlc.types.Field('JSONFilter', graphql_name='value') class-attribute instance-attribute

ConfigsConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
class ConfigsConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('nodes', 'edges', 'page_info', 'total_count')
    nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(
        sgqlc.types.non_null('Config'))), graphql_name='nodes')
    edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(
        sgqlc.types.non_null('ConfigsEdge'))), graphql_name='edges')
    page_info = sgqlc.types.Field(sgqlc.types.non_null(
        'PageInfo'), graphql_name='pageInfo')
    total_count = sgqlc.types.Field(
        sgqlc.types.non_null(Int), graphql_name='totalCount')

__field_names__ = ('nodes', 'edges', 'page_info', 'total_count') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ConfigsEdge'))), graphql_name='edges') class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Config'))), graphql_name='nodes') class-attribute instance-attribute

page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') class-attribute instance-attribute

total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') class-attribute instance-attribute

ConfigsEdge

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2176
2177
2178
2179
2180
2181
class ConfigsEdge(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('cursor', 'node')
    cursor = sgqlc.types.Field(Cursor, graphql_name='cursor')
    node = sgqlc.types.Field(
        sgqlc.types.non_null('Config'), graphql_name='node')

__field_names__ = ('cursor', 'node') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') class-attribute instance-attribute

node = sgqlc.types.Field(sgqlc.types.non_null('Config'), graphql_name='node') class-attribute instance-attribute

ConfigsOrderBy

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
58
59
60
61
class ConfigsOrderBy(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('KEY_ASC', 'KEY_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC',
                   'UPDATED_AT_ASC', 'UPDATED_AT_DESC', 'UPDATED_BY_ASC', 'UPDATED_BY_DESC', 'VALUE_ASC', 'VALUE_DESC')

__choices__ = ('KEY_ASC', 'KEY_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'UPDATED_AT_ASC', 'UPDATED_AT_DESC', 'UPDATED_BY_ASC', 'UPDATED_BY_DESC', 'VALUE_ASC', 'VALUE_DESC') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

CoreTeaser

Bases: sgqlc.types.Interface

Source code in src/libaudiothek/audiothek_schema.py
2184
2185
2186
2187
2188
2189
class CoreTeaser(sgqlc.types.Interface):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'title')
    id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id')
    title = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='title')

__field_names__ = ('id', 'title') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') class-attribute instance-attribute

title = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='title') class-attribute instance-attribute

Cursor

Bases: sgqlc.types.Scalar

Source code in src/libaudiothek/audiothek_schema.py
64
65
class Cursor(sgqlc.types.Scalar):
    __schema__ = audiothek_schema

__schema__ = audiothek_schema class-attribute instance-attribute

DateFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
549
550
551
552
553
554
555
556
557
558
class DateFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('eq', 'ne', 'in_', 'gt', 'gte', 'lt', 'lte')
    eq = sgqlc.types.Field(DateTime, graphql_name='eq')
    ne = sgqlc.types.Field(DateTime, graphql_name='ne')
    in_ = sgqlc.types.Field(sgqlc.types.list_of(DateTime), graphql_name='in')
    gt = sgqlc.types.Field(DateTime, graphql_name='gt')
    gte = sgqlc.types.Field(DateTime, graphql_name='gte')
    lt = sgqlc.types.Field(DateTime, graphql_name='lt')
    lte = sgqlc.types.Field(DateTime, graphql_name='lte')

__field_names__ = ('eq', 'ne', 'in_', 'gt', 'gte', 'lt', 'lte') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

eq = sgqlc.types.Field(DateTime, graphql_name='eq') class-attribute instance-attribute

gt = sgqlc.types.Field(DateTime, graphql_name='gt') class-attribute instance-attribute

gte = sgqlc.types.Field(DateTime, graphql_name='gte') class-attribute instance-attribute

in_ = sgqlc.types.Field(sgqlc.types.list_of(DateTime), graphql_name='in') class-attribute instance-attribute

lt = sgqlc.types.Field(DateTime, graphql_name='lt') class-attribute instance-attribute

lte = sgqlc.types.Field(DateTime, graphql_name='lte') class-attribute instance-attribute

ne = sgqlc.types.Field(DateTime, graphql_name='ne') class-attribute instance-attribute

Datetime

Bases: sgqlc.types.Scalar

Source code in src/libaudiothek/audiothek_schema.py
71
72
class Datetime(sgqlc.types.Scalar):
    __schema__ = audiothek_schema

__schema__ = audiothek_schema class-attribute instance-attribute

DatetimeFilter

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
class DatetimeFilter(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from',
                       'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to')
    is_null = sgqlc.types.Field(Boolean, graphql_name='isNull')
    equal_to = sgqlc.types.Field(Datetime, graphql_name='equalTo')
    not_equal_to = sgqlc.types.Field(Datetime, graphql_name='notEqualTo')
    distinct_from = sgqlc.types.Field(Datetime, graphql_name='distinctFrom')
    not_distinct_from = sgqlc.types.Field(
        Datetime, graphql_name='notDistinctFrom')
    in_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null(Datetime)), graphql_name='in')
    not_in = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null(Datetime)), graphql_name='notIn')
    less_than = sgqlc.types.Field(Datetime, graphql_name='lessThan')
    less_than_or_equal_to = sgqlc.types.Field(
        Datetime, graphql_name='lessThanOrEqualTo')
    greater_than = sgqlc.types.Field(Datetime, graphql_name='greaterThan')
    greater_than_or_equal_to = sgqlc.types.Field(
        Datetime, graphql_name='greaterThanOrEqualTo')

__field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

distinct_from = sgqlc.types.Field(Datetime, graphql_name='distinctFrom') class-attribute instance-attribute

equal_to = sgqlc.types.Field(Datetime, graphql_name='equalTo') class-attribute instance-attribute

greater_than = sgqlc.types.Field(Datetime, graphql_name='greaterThan') class-attribute instance-attribute

greater_than_or_equal_to = sgqlc.types.Field(Datetime, graphql_name='greaterThanOrEqualTo') class-attribute instance-attribute

in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(Datetime)), graphql_name='in') class-attribute instance-attribute

is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') class-attribute instance-attribute

less_than = sgqlc.types.Field(Datetime, graphql_name='lessThan') class-attribute instance-attribute

less_than_or_equal_to = sgqlc.types.Field(Datetime, graphql_name='lessThanOrEqualTo') class-attribute instance-attribute

not_distinct_from = sgqlc.types.Field(Datetime, graphql_name='notDistinctFrom') class-attribute instance-attribute

not_equal_to = sgqlc.types.Field(Datetime, graphql_name='notEqualTo') class-attribute instance-attribute

not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(Datetime)), graphql_name='notIn') class-attribute instance-attribute

DebugShowGroupEdge

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2192
2193
2194
2195
2196
2197
class DebugShowGroupEdge(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('cursor', 'node')
    cursor = sgqlc.types.Field(Cursor, graphql_name='cursor')
    node = sgqlc.types.Field(sgqlc.types.non_null(
        'DebugShowGroupsRecord'), graphql_name='node')

__field_names__ = ('cursor', 'node') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') class-attribute instance-attribute

node = sgqlc.types.Field(sgqlc.types.non_null('DebugShowGroupsRecord'), graphql_name='node') class-attribute instance-attribute

DebugShowGroupsConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
2200
2201
2202
2203
2204
2205
2206
2207
2208
class DebugShowGroupsConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('nodes', 'edges', 'total_count')
    nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(
        sgqlc.types.non_null('DebugShowGroupsRecord'))), graphql_name='nodes')
    edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(
        sgqlc.types.non_null(DebugShowGroupEdge))), graphql_name='edges')
    total_count = sgqlc.types.Field(
        sgqlc.types.non_null(Int), graphql_name='totalCount')

__field_names__ = ('nodes', 'edges', 'total_count') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(DebugShowGroupEdge))), graphql_name='edges') class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('DebugShowGroupsRecord'))), graphql_name='nodes') class-attribute instance-attribute

total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') class-attribute instance-attribute

DebugShowGroupsRecord

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
class DebugShowGroupsRecord(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('row_id', 'core_id', 'publish_date', 'modified_publish_date', 'title', 'title_without_number',
                       'group_number', 'max_group_number', 'season_number', 'group_id', 'core_type', 'external_id')
    row_id = sgqlc.types.Field(Int, graphql_name='rowId')
    core_id = sgqlc.types.Field(String, graphql_name='coreId')
    publish_date = sgqlc.types.Field(Datetime, graphql_name='publishDate')
    modified_publish_date = sgqlc.types.Field(
        Datetime, graphql_name='modifiedPublishDate')
    title = sgqlc.types.Field(String, graphql_name='title')
    title_without_number = sgqlc.types.Field(
        String, graphql_name='titleWithoutNumber')
    group_number = sgqlc.types.Field(Int, graphql_name='groupNumber')
    max_group_number = sgqlc.types.Field(Int, graphql_name='maxGroupNumber')
    season_number = sgqlc.types.Field(Int, graphql_name='seasonNumber')
    group_id = sgqlc.types.Field(Int, graphql_name='groupId')
    core_type = sgqlc.types.Field(String, graphql_name='coreType')
    external_id = sgqlc.types.Field(String, graphql_name='externalId')

__field_names__ = ('row_id', 'core_id', 'publish_date', 'modified_publish_date', 'title', 'title_without_number', 'group_number', 'max_group_number', 'season_number', 'group_id', 'core_type', 'external_id') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

core_id = sgqlc.types.Field(String, graphql_name='coreId') class-attribute instance-attribute

core_type = sgqlc.types.Field(String, graphql_name='coreType') class-attribute instance-attribute

external_id = sgqlc.types.Field(String, graphql_name='externalId') class-attribute instance-attribute

group_id = sgqlc.types.Field(Int, graphql_name='groupId') class-attribute instance-attribute

group_number = sgqlc.types.Field(Int, graphql_name='groupNumber') class-attribute instance-attribute

max_group_number = sgqlc.types.Field(Int, graphql_name='maxGroupNumber') class-attribute instance-attribute

modified_publish_date = sgqlc.types.Field(Datetime, graphql_name='modifiedPublishDate') class-attribute instance-attribute

publish_date = sgqlc.types.Field(Datetime, graphql_name='publishDate') class-attribute instance-attribute

row_id = sgqlc.types.Field(Int, graphql_name='rowId') class-attribute instance-attribute

season_number = sgqlc.types.Field(Int, graphql_name='seasonNumber') class-attribute instance-attribute

title = sgqlc.types.Field(String, graphql_name='title') class-attribute instance-attribute

title_without_number = sgqlc.types.Field(String, graphql_name='titleWithoutNumber') class-attribute instance-attribute

DeleteHistoryEntryByItemInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
583
584
585
586
587
588
589
class DeleteHistoryEntryByItemInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'item')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    item = sgqlc.types.Field(sgqlc.types.non_null(
        'ItemCreateInput'), graphql_name='item')

__field_names__ = ('client_mutation_id', 'item') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

item = sgqlc.types.Field(sgqlc.types.non_null('ItemCreateInput'), graphql_name='item') class-attribute instance-attribute

DeleteInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
592
593
594
595
596
597
class DeleteInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'id')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id')

__field_names__ = ('client_mutation_id', 'id') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') class-attribute instance-attribute

DeletePayload

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2231
2232
2233
2234
2235
class DeletePayload(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id',)
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')

__field_names__ = ('client_mutation_id') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

DepublishExpiredItemsInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
600
601
602
603
604
class DepublishExpiredItemsInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id',)
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')

__field_names__ = ('client_mutation_id') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

DepublishExpiredItemsPayload

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2238
2239
2240
2241
2242
2243
2244
class DepublishExpiredItemsPayload(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'big_int', 'query')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    big_int = sgqlc.types.Field(BigInt, graphql_name='bigInt')
    query = sgqlc.types.Field('Query', graphql_name='query')

__field_names__ = ('client_mutation_id', 'big_int', 'query') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

big_int = sgqlc.types.Field(BigInt, graphql_name='bigInt') class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

query = sgqlc.types.Field('Query', graphql_name='query') class-attribute instance-attribute

DurationVariant

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
75
76
77
class DurationVariant(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('ISO8601', 'SECONDS')

__choices__ = ('ISO8601', 'SECONDS') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

EditorialCategoriesConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
class EditorialCategoriesConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('nodes', 'edges', 'page_info',
                       'total_count', 'title', 'tracking')
    nodes = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null('EditorialCategory')), graphql_name='nodes')
    edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(
        sgqlc.types.non_null('EditorialCategoriesEdge'))), graphql_name='edges')
    page_info = sgqlc.types.Field('PageInfo', graphql_name='pageInfo')
    total_count = sgqlc.types.Field(
        sgqlc.types.non_null(Int), graphql_name='totalCount')
    title = sgqlc.types.Field(String, graphql_name='title')
    tracking = sgqlc.types.Field(JSON, graphql_name='tracking')

__field_names__ = ('nodes', 'edges', 'page_info', 'total_count', 'title', 'tracking') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('EditorialCategoriesEdge'))), graphql_name='edges') class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EditorialCategory')), graphql_name='nodes') class-attribute instance-attribute

page_info = sgqlc.types.Field('PageInfo', graphql_name='pageInfo') class-attribute instance-attribute

title = sgqlc.types.Field(String, graphql_name='title') class-attribute instance-attribute

total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') class-attribute instance-attribute

tracking = sgqlc.types.Field(JSON, graphql_name='tracking') class-attribute instance-attribute

EditorialCategoriesEdge

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2262
2263
2264
2265
2266
2267
class EditorialCategoriesEdge(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('cursor', 'node')
    cursor = sgqlc.types.Field(Cursor, graphql_name='cursor')
    node = sgqlc.types.Field(sgqlc.types.non_null(
        'EditorialCategory'), graphql_name='node')

__field_names__ = ('cursor', 'node') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') class-attribute instance-attribute

node = sgqlc.types.Field(sgqlc.types.non_null('EditorialCategory'), graphql_name='node') class-attribute instance-attribute

EditorialCategoriesOrderBy

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
80
81
82
83
class EditorialCategoriesOrderBy(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('ID_ASC', 'ID_DESC', 'IMAGE_ASC', 'IMAGE_DESC', 'NATURAL', 'ORDER_ASC', 'ORDER_DESC',
                   'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'SOPHORA_ID_ASC', 'SOPHORA_ID_DESC', 'TITLE_ASC', 'TITLE_DESC')

__choices__ = ('ID_ASC', 'ID_DESC', 'IMAGE_ASC', 'IMAGE_DESC', 'NATURAL', 'ORDER_ASC', 'ORDER_DESC', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'SOPHORA_ID_ASC', 'SOPHORA_ID_DESC', 'TITLE_ASC', 'TITLE_DESC') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

EditorialCategory

Bases: sgqlc.types.Type, Node, Teaser

Source code in src/libaudiothek/audiothek_schema.py
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
class EditorialCategory(sgqlc.types.Type, Node, Teaser):
    __schema__ = audiothek_schema
    __field_names__ = ('row_id', 'sophora_id', 'order', 'items', 'categories_to_program_sets_by_category_sophora_id',
                       'categories_to_program_sets_by_category_sophora_id_list', 'recent_items', 'recent_items_list', 'program_sets', 'program_sets_list')
    row_id = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='rowId')
    sophora_id = sgqlc.types.Field(String, graphql_name='sophoraId')
    order = sgqlc.types.Field(Int, graphql_name='order')
    items = sgqlc.types.Field(sgqlc.types.non_null(ItemsConnection), graphql_name='items', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            ItemsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))),
        ('condition', sgqlc.types.Arg(ItemCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(ItemFilter, graphql_name='filter', default=None)),
    ))
    )
    categories_to_program_sets_by_category_sophora_id = sgqlc.types.Field(sgqlc.types.non_null(CategoriesToProgramSetsConnection), graphql_name='categoriesToProgramSetsByCategorySophoraId', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            CategoriesToProgramSetsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))),
        ('condition', sgqlc.types.Arg(CategoriesToProgramSetCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(CategoriesToProgramSetFilter,
         graphql_name='filter', default=None)),
    ))
    )
    categories_to_program_sets_by_category_sophora_id_list = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(CategoriesToProgramSet))), graphql_name='categoriesToProgramSetsByCategorySophoraIdList', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            CategoriesToProgramSetsOrderBy)), graphql_name='orderBy', default=None)),
        ('condition', sgqlc.types.Arg(CategoriesToProgramSetCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(CategoriesToProgramSetFilter,
         graphql_name='filter', default=None)),
    ))
    )
    recent_items = sgqlc.types.Field(sgqlc.types.non_null(ItemsConnection), graphql_name='recentItems', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(
            sgqlc.types.non_null(ItemsOrderBy)), graphql_name='orderBy', default=None)),
        ('condition', sgqlc.types.Arg(ItemCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(ItemFilter, graphql_name='filter', default=None)),
    ))
    )
    recent_items_list = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('Item')), graphql_name='recentItemsList', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(
            sgqlc.types.non_null(ItemsOrderBy)), graphql_name='orderBy', default=None)),
        ('condition', sgqlc.types.Arg(ItemCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(ItemFilter, graphql_name='filter', default=None)),
    ))
    )
    program_sets = sgqlc.types.Field(sgqlc.types.non_null(EditorialCategoryProgramSetsManyToManyConnection), graphql_name='programSets', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            ProgramSetsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))),
        ('condition', sgqlc.types.Arg(ProgramSetCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(ProgramSetFilter,
         graphql_name='filter', default=None)),
    ))
    )
    program_sets_list = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ProgramSet'))), graphql_name='programSetsList', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            ProgramSetsOrderBy)), graphql_name='orderBy', default=None)),
        ('condition', sgqlc.types.Arg(ProgramSetCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(ProgramSetFilter,
         graphql_name='filter', default=None)),
    ))
    )

__field_names__ = ('row_id', 'sophora_id', 'order', 'items', 'categories_to_program_sets_by_category_sophora_id', 'categories_to_program_sets_by_category_sophora_id_list', 'recent_items', 'recent_items_list', 'program_sets', 'program_sets_list') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

categories_to_program_sets_by_category_sophora_id = sgqlc.types.Field(sgqlc.types.non_null(CategoriesToProgramSetsConnection), graphql_name='categoriesToProgramSetsByCategorySophoraId', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(CategoriesToProgramSetsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC'))), ('condition', sgqlc.types.Arg(CategoriesToProgramSetCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(CategoriesToProgramSetFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

categories_to_program_sets_by_category_sophora_id_list = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(CategoriesToProgramSet))), graphql_name='categoriesToProgramSetsByCategorySophoraIdList', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(CategoriesToProgramSetsOrderBy)), graphql_name='orderBy', default=None)), ('condition', sgqlc.types.Arg(CategoriesToProgramSetCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(CategoriesToProgramSetFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

items = sgqlc.types.Field(sgqlc.types.non_null(ItemsConnection), graphql_name='items', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ItemsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC'))), ('condition', sgqlc.types.Arg(ItemCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(ItemFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

order = sgqlc.types.Field(Int, graphql_name='order') class-attribute instance-attribute

program_sets = sgqlc.types.Field(sgqlc.types.non_null(EditorialCategoryProgramSetsManyToManyConnection), graphql_name='programSets', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProgramSetsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC'))), ('condition', sgqlc.types.Arg(ProgramSetCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(ProgramSetFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

program_sets_list = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ProgramSet'))), graphql_name='programSetsList', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProgramSetsOrderBy)), graphql_name='orderBy', default=None)), ('condition', sgqlc.types.Arg(ProgramSetCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(ProgramSetFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

recent_items = sgqlc.types.Field(sgqlc.types.non_null(ItemsConnection), graphql_name='recentItems', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ItemsOrderBy)), graphql_name='orderBy', default=None)), ('condition', sgqlc.types.Arg(ItemCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(ItemFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

recent_items_list = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('Item')), graphql_name='recentItemsList', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ItemsOrderBy)), graphql_name='orderBy', default=None)), ('condition', sgqlc.types.Arg(ItemCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(ItemFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

row_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='rowId') class-attribute instance-attribute

sophora_id = sgqlc.types.Field(String, graphql_name='sophoraId') class-attribute instance-attribute

EditorialCategoryCondition

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
607
608
609
610
611
612
613
614
class EditorialCategoryCondition(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'title', 'image', 'sophora_id', 'order')
    id = sgqlc.types.Field(String, graphql_name='id')
    title = sgqlc.types.Field(String, graphql_name='title')
    image = sgqlc.types.Field('ImageTypeInput', graphql_name='image')
    sophora_id = sgqlc.types.Field(String, graphql_name='sophoraId')
    order = sgqlc.types.Field(Int, graphql_name='order')

__field_names__ = ('id', 'title', 'image', 'sophora_id', 'order') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

id = sgqlc.types.Field(String, graphql_name='id') class-attribute instance-attribute

image = sgqlc.types.Field('ImageTypeInput', graphql_name='image') class-attribute instance-attribute

order = sgqlc.types.Field(Int, graphql_name='order') class-attribute instance-attribute

sophora_id = sgqlc.types.Field(String, graphql_name='sophoraId') class-attribute instance-attribute

title = sgqlc.types.Field(String, graphql_name='title') class-attribute instance-attribute

EditorialCategoryFilter

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
617
618
619
620
621
622
623
624
625
626
627
628
629
630
class EditorialCategoryFilter(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'title', 'sophora_id', 'order',
                       'image', 'and_', 'or_', 'not_')
    id = sgqlc.types.Field('StringFilter', graphql_name='id')
    title = sgqlc.types.Field('StringFilter', graphql_name='title')
    sophora_id = sgqlc.types.Field('StringFilter', graphql_name='sophoraId')
    order = sgqlc.types.Field('IntFilter', graphql_name='order')
    image = sgqlc.types.Field('ImageTypeFilter', graphql_name='image')
    and_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null('EditorialCategoryFilter')), graphql_name='and')
    or_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null('EditorialCategoryFilter')), graphql_name='or')
    not_ = sgqlc.types.Field('EditorialCategoryFilter', graphql_name='not')

__field_names__ = ('id', 'title', 'sophora_id', 'order', 'image', 'and_', 'or_', 'not_') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EditorialCategoryFilter')), graphql_name='and') class-attribute instance-attribute

id = sgqlc.types.Field('StringFilter', graphql_name='id') class-attribute instance-attribute

image = sgqlc.types.Field('ImageTypeFilter', graphql_name='image') class-attribute instance-attribute

not_ = sgqlc.types.Field('EditorialCategoryFilter', graphql_name='not') class-attribute instance-attribute

or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EditorialCategoryFilter')), graphql_name='or') class-attribute instance-attribute

order = sgqlc.types.Field('IntFilter', graphql_name='order') class-attribute instance-attribute

sophora_id = sgqlc.types.Field('StringFilter', graphql_name='sophoraId') class-attribute instance-attribute

title = sgqlc.types.Field('StringFilter', graphql_name='title') class-attribute instance-attribute

EditorialCategoryProgramSetsManyToManyConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
class EditorialCategoryProgramSetsManyToManyConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('nodes', 'edges', 'page_info', 'total_count')
    nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(
        sgqlc.types.non_null('ProgramSet'))), graphql_name='nodes')
    edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(
        'EditorialCategoryProgramSetsManyToManyEdge'))), graphql_name='edges')
    page_info = sgqlc.types.Field(sgqlc.types.non_null(
        'PageInfo'), graphql_name='pageInfo')
    total_count = sgqlc.types.Field(
        sgqlc.types.non_null(Int), graphql_name='totalCount')

__field_names__ = ('nodes', 'edges', 'page_info', 'total_count') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('EditorialCategoryProgramSetsManyToManyEdge'))), graphql_name='edges') class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ProgramSet'))), graphql_name='nodes') class-attribute instance-attribute

page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') class-attribute instance-attribute

total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') class-attribute instance-attribute

EditorialCategoryProgramSetsManyToManyEdge

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2283
2284
2285
2286
2287
2288
class EditorialCategoryProgramSetsManyToManyEdge(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('cursor', 'node')
    cursor = sgqlc.types.Field(Cursor, graphql_name='cursor')
    node = sgqlc.types.Field(sgqlc.types.non_null(
        'ProgramSet'), graphql_name='node')

__field_names__ = ('cursor', 'node') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') class-attribute instance-attribute

node = sgqlc.types.Field(sgqlc.types.non_null('ProgramSet'), graphql_name='node') class-attribute instance-attribute

EditorialCollection

Bases: sgqlc.types.Type, Node, Teaser

Source code in src/libaudiothek/audiothek_schema.py
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
class EditorialCollection(sgqlc.types.Type, Node, Teaser):
    __schema__ = audiothek_schema
    __field_names__ = ('sophora_id', 'broadcast_duration',
                       'coremedia_id', 'row_id', 'summary', 'items')
    sophora_id = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='sophoraId')
    broadcast_duration = sgqlc.types.Field(
        Int, graphql_name='broadcastDuration')
    coremedia_id = sgqlc.types.Field(String, graphql_name='coremediaId')
    row_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='rowId')
    summary = sgqlc.types.Field(String, graphql_name='summary')
    items = sgqlc.types.Field(sgqlc.types.non_null(ItemsConnection), graphql_name='items', args=sgqlc.types.ArgDict((
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('limit', sgqlc.types.Arg(Int, graphql_name='limit', default=None)),
    ))
    )

__field_names__ = ('sophora_id', 'broadcast_duration', 'coremedia_id', 'row_id', 'summary', 'items') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

broadcast_duration = sgqlc.types.Field(Int, graphql_name='broadcastDuration') class-attribute instance-attribute

coremedia_id = sgqlc.types.Field(String, graphql_name='coremediaId') class-attribute instance-attribute

items = sgqlc.types.Field(sgqlc.types.non_null(ItemsConnection), graphql_name='items', args=sgqlc.types.ArgDict((('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('limit', sgqlc.types.Arg(Int, graphql_name='limit', default=None))))) class-attribute instance-attribute

row_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='rowId') class-attribute instance-attribute

sophora_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='sophoraId') class-attribute instance-attribute

summary = sgqlc.types.Field(String, graphql_name='summary') class-attribute instance-attribute

EditorialCollectionCondition

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
633
634
635
636
637
638
639
640
641
642
643
644
645
class EditorialCollectionCondition(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('sophora_id', 'title', 'image', 'broadcast_duration',
                       'number_of_elements', 'synopsis', 'coremedia_id')
    sophora_id = sgqlc.types.Field(String, graphql_name='sophoraId')
    title = sgqlc.types.Field(String, graphql_name='title')
    image = sgqlc.types.Field('ImageTypeInput', graphql_name='image')
    broadcast_duration = sgqlc.types.Field(
        Int, graphql_name='broadcastDuration')
    number_of_elements = sgqlc.types.Field(
        Int, graphql_name='numberOfElements')
    synopsis = sgqlc.types.Field(String, graphql_name='synopsis')
    coremedia_id = sgqlc.types.Field(String, graphql_name='coremediaId')

__field_names__ = ('sophora_id', 'title', 'image', 'broadcast_duration', 'number_of_elements', 'synopsis', 'coremedia_id') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

broadcast_duration = sgqlc.types.Field(Int, graphql_name='broadcastDuration') class-attribute instance-attribute

coremedia_id = sgqlc.types.Field(String, graphql_name='coremediaId') class-attribute instance-attribute

image = sgqlc.types.Field('ImageTypeInput', graphql_name='image') class-attribute instance-attribute

number_of_elements = sgqlc.types.Field(Int, graphql_name='numberOfElements') class-attribute instance-attribute

sophora_id = sgqlc.types.Field(String, graphql_name='sophoraId') class-attribute instance-attribute

synopsis = sgqlc.types.Field(String, graphql_name='synopsis') class-attribute instance-attribute

title = sgqlc.types.Field(String, graphql_name='title') class-attribute instance-attribute

EditorialCollectionFilter

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
class EditorialCollectionFilter(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('sophora_id', 'title', 'broadcast_duration', 'number_of_elements',
                       'synopsis', 'coremedia_id', 'image', 'and_', 'or_', 'not_')
    sophora_id = sgqlc.types.Field('StringFilter', graphql_name='sophoraId')
    title = sgqlc.types.Field('StringFilter', graphql_name='title')
    broadcast_duration = sgqlc.types.Field(
        'IntFilter', graphql_name='broadcastDuration')
    number_of_elements = sgqlc.types.Field(
        'IntFilter', graphql_name='numberOfElements')
    synopsis = sgqlc.types.Field('StringFilter', graphql_name='synopsis')
    coremedia_id = sgqlc.types.Field(
        'StringFilter', graphql_name='coremediaId')
    image = sgqlc.types.Field('ImageTypeFilter', graphql_name='image')
    and_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null('EditorialCollectionFilter')), graphql_name='and')
    or_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null('EditorialCollectionFilter')), graphql_name='or')
    not_ = sgqlc.types.Field('EditorialCollectionFilter', graphql_name='not')

__field_names__ = ('sophora_id', 'title', 'broadcast_duration', 'number_of_elements', 'synopsis', 'coremedia_id', 'image', 'and_', 'or_', 'not_') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EditorialCollectionFilter')), graphql_name='and') class-attribute instance-attribute

broadcast_duration = sgqlc.types.Field('IntFilter', graphql_name='broadcastDuration') class-attribute instance-attribute

coremedia_id = sgqlc.types.Field('StringFilter', graphql_name='coremediaId') class-attribute instance-attribute

image = sgqlc.types.Field('ImageTypeFilter', graphql_name='image') class-attribute instance-attribute

not_ = sgqlc.types.Field('EditorialCollectionFilter', graphql_name='not') class-attribute instance-attribute

number_of_elements = sgqlc.types.Field('IntFilter', graphql_name='numberOfElements') class-attribute instance-attribute

or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EditorialCollectionFilter')), graphql_name='or') class-attribute instance-attribute

sophora_id = sgqlc.types.Field('StringFilter', graphql_name='sophoraId') class-attribute instance-attribute

synopsis = sgqlc.types.Field('StringFilter', graphql_name='synopsis') class-attribute instance-attribute

title = sgqlc.types.Field('StringFilter', graphql_name='title') class-attribute instance-attribute

EditorialCollectionSection

Bases: sgqlc.types.Type, Section

Source code in src/libaudiothek/audiothek_schema.py
4147
4148
4149
4150
class EditorialCollectionSection(sgqlc.types.Type, Section):
    __schema__ = audiothek_schema
    __field_names__ = ('key',)
    key = sgqlc.types.Field(String, graphql_name='key')

__field_names__ = ('key') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

key = sgqlc.types.Field(String, graphql_name='key') class-attribute instance-attribute

EditorialCollectionsConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
class EditorialCollectionsConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('nodes', 'edges', 'page_info', 'total_count')
    nodes = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null('EditorialCollection')), graphql_name='nodes')
    edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(
        sgqlc.types.non_null('EditorialCollectionsEdge'))), graphql_name='edges')
    page_info = sgqlc.types.Field('PageInfo', graphql_name='pageInfo')
    total_count = sgqlc.types.Field(
        sgqlc.types.non_null(Int), graphql_name='totalCount')

__field_names__ = ('nodes', 'edges', 'page_info', 'total_count') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('EditorialCollectionsEdge'))), graphql_name='edges') class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EditorialCollection')), graphql_name='nodes') class-attribute instance-attribute

page_info = sgqlc.types.Field('PageInfo', graphql_name='pageInfo') class-attribute instance-attribute

total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') class-attribute instance-attribute

EditorialCollectionsEdge

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2303
2304
2305
2306
2307
2308
class EditorialCollectionsEdge(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('cursor', 'node')
    cursor = sgqlc.types.Field(Cursor, graphql_name='cursor')
    node = sgqlc.types.Field(sgqlc.types.non_null(
        'EditorialCollection'), graphql_name='node')

__field_names__ = ('cursor', 'node') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') class-attribute instance-attribute

node = sgqlc.types.Field(sgqlc.types.non_null('EditorialCollection'), graphql_name='node') class-attribute instance-attribute

EditorialCollectionsOrderBy

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
86
87
88
89
class EditorialCollectionsOrderBy(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('BROADCAST_DURATION_ASC', 'BROADCAST_DURATION_DESC', 'COREMEDIA_ID_ASC', 'COREMEDIA_ID_DESC', 'IMAGE_ASC', 'IMAGE_DESC', 'NATURAL', 'NUMBER_OF_ELEMENTS_ASC',
                   'NUMBER_OF_ELEMENTS_DESC', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'SOPHORA_ID_ASC', 'SOPHORA_ID_DESC', 'SYNOPSIS_ASC', 'SYNOPSIS_DESC', 'TITLE_ASC', 'TITLE_DESC')

__choices__ = ('BROADCAST_DURATION_ASC', 'BROADCAST_DURATION_DESC', 'COREMEDIA_ID_ASC', 'COREMEDIA_ID_DESC', 'IMAGE_ASC', 'IMAGE_DESC', 'NATURAL', 'NUMBER_OF_ELEMENTS_ASC', 'NUMBER_OF_ELEMENTS_DESC', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'SOPHORA_ID_ASC', 'SOPHORA_ID_DESC', 'SYNOPSIS_ASC', 'SYNOPSIS_DESC', 'TITLE_ASC', 'TITLE_DESC') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

EndUser

Bases: sgqlc.types.Type, EndUserInterface

Source code in src/libaudiothek/audiothek_schema.py
4153
4154
4155
class EndUser(sgqlc.types.Type, EndUserInterface):
    __schema__ = audiothek_schema
    __field_names__ = ()

__field_names__ = () class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

EndUserConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
class EndUserConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('count', 'edges', 'nodes', 'page_info')
    count = sgqlc.types.Field(Int, graphql_name='count')
    edges = sgqlc.types.Field(sgqlc.types.list_of(
        'EndUserEdge'), graphql_name='edges')
    nodes = sgqlc.types.Field(sgqlc.types.list_of(
        'EndUserInterface'), graphql_name='nodes')
    page_info = sgqlc.types.Field(sgqlc.types.non_null(
        'PageInfo'), graphql_name='pageInfo')

__field_names__ = ('count', 'edges', 'nodes', 'page_info') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

count = sgqlc.types.Field(Int, graphql_name='count') class-attribute instance-attribute

edges = sgqlc.types.Field(sgqlc.types.list_of('EndUserEdge'), graphql_name='edges') class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.list_of('EndUserInterface'), graphql_name='nodes') class-attribute instance-attribute

page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') class-attribute instance-attribute

EndUserConnectionFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
669
670
671
672
673
class EndUserConnectionFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('empty', 'contains')
    empty = sgqlc.types.Field(BooleanFilterB, graphql_name='empty')
    contains = sgqlc.types.Field(ID, graphql_name='contains')

__field_names__ = ('empty', 'contains') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

contains = sgqlc.types.Field(ID, graphql_name='contains') class-attribute instance-attribute

empty = sgqlc.types.Field(BooleanFilterB, graphql_name='empty') class-attribute instance-attribute

EndUserCreateInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
676
677
678
679
680
681
682
683
684
685
class EndUserCreateInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'type',
                       'local_id', 'login_id', 'sync_successful')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    type = sgqlc.types.Field(String, graphql_name='type')
    local_id = sgqlc.types.Field(String, graphql_name='localId')
    login_id = sgqlc.types.Field(String, graphql_name='loginId')
    sync_successful = sgqlc.types.Field(Boolean, graphql_name='syncSuccessful')

__field_names__ = ('client_mutation_id', 'type', 'local_id', 'login_id', 'sync_successful') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

local_id = sgqlc.types.Field(String, graphql_name='localId') class-attribute instance-attribute

login_id = sgqlc.types.Field(String, graphql_name='loginId') class-attribute instance-attribute

sync_successful = sgqlc.types.Field(Boolean, graphql_name='syncSuccessful') class-attribute instance-attribute

type = sgqlc.types.Field(String, graphql_name='type') class-attribute instance-attribute

EndUserEdge

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2323
2324
2325
2326
2327
2328
class EndUserEdge(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('cursor', 'node')
    cursor = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='cursor')
    node = sgqlc.types.Field('EndUserInterface', graphql_name='node')

__field_names__ = ('cursor', 'node') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

cursor = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='cursor') class-attribute instance-attribute

node = sgqlc.types.Field('EndUserInterface', graphql_name='node') class-attribute instance-attribute

EndUserFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
688
689
690
691
692
693
694
695
696
697
class EndUserFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('created_at', 'local_id', 'login_id',
                       'modified_at', 'sync_successful')
    created_at = sgqlc.types.Field(DateFilterB, graphql_name='createdAt')
    local_id = sgqlc.types.Field('StringFilterB', graphql_name='localId')
    login_id = sgqlc.types.Field('StringFilterB', graphql_name='loginId')
    modified_at = sgqlc.types.Field(DateFilterB, graphql_name='modifiedAt')
    sync_successful = sgqlc.types.Field(
        BooleanFilterB, graphql_name='syncSuccessful')

__field_names__ = ('created_at', 'local_id', 'login_id', 'modified_at', 'sync_successful') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

created_at = sgqlc.types.Field(DateFilterB, graphql_name='createdAt') class-attribute instance-attribute

local_id = sgqlc.types.Field('StringFilterB', graphql_name='localId') class-attribute instance-attribute

login_id = sgqlc.types.Field('StringFilterB', graphql_name='loginId') class-attribute instance-attribute

modified_at = sgqlc.types.Field(DateFilterB, graphql_name='modifiedAt') class-attribute instance-attribute

sync_successful = sgqlc.types.Field(BooleanFilterB, graphql_name='syncSuccessful') class-attribute instance-attribute

EndUserInterface

Bases: sgqlc.types.Interface

Source code in src/libaudiothek/audiothek_schema.py
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
class EndUserInterface(sgqlc.types.Interface):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'base_id_prefix', 'bookmarks', 'created_at', 'history', 'local_id',
                       'login_id', 'modified_at', 'playlists', 'properties', 'queue', 'subscriptions', 'sync_successful')
    id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id')
    base_id_prefix = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='baseIdPrefix')
    bookmarks = sgqlc.types.Field(
        BookmarkListInterface, graphql_name='bookmarks')
    created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
    history = sgqlc.types.Field('HistoryEntryConnection', graphql_name='history', args=sgqlc.types.ArgDict((
        ('after', sgqlc.types.Arg(String, graphql_name='after', default=None)),
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('before', sgqlc.types.Arg(String, graphql_name='before', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('filter', sgqlc.types.Arg(HistoryEntryFilterB,
         graphql_name='filter', default=None)),
        ('order_by', sgqlc.types.Arg(HistoryEntrySortOrder,
         graphql_name='orderBy', default=None)),
    ))
    )
    local_id = sgqlc.types.Field(String, graphql_name='localId')
    login_id = sgqlc.types.Field(String, graphql_name='loginId')
    modified_at = sgqlc.types.Field(DateTime, graphql_name='modifiedAt')
    playlists = sgqlc.types.Field('PlaylistConnection', graphql_name='playlists', args=sgqlc.types.ArgDict((
        ('after', sgqlc.types.Arg(String, graphql_name='after', default=None)),
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('before', sgqlc.types.Arg(String, graphql_name='before', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('filter', sgqlc.types.Arg(PlaylistFilterB,
         graphql_name='filter', default=None)),
        ('order_by', sgqlc.types.Arg(PlaylistSortOrder,
         graphql_name='orderBy', default=None)),
    ))
    )
    properties = sgqlc.types.Field('PropertyConnection', graphql_name='properties', args=sgqlc.types.ArgDict((
        ('after', sgqlc.types.Arg(String, graphql_name='after', default=None)),
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('before', sgqlc.types.Arg(String, graphql_name='before', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('filter', sgqlc.types.Arg(PropertyFilterB,
         graphql_name='filter', default=None)),
        ('order_by', sgqlc.types.Arg(PropertySortOrder,
         graphql_name='orderBy', default=None)),
    ))
    )
    queue = sgqlc.types.Field('QueueInterface', graphql_name='queue')
    subscriptions = sgqlc.types.Field(
        'SubscriptionListInterface', graphql_name='subscriptions')
    sync_successful = sgqlc.types.Field(Boolean, graphql_name='syncSuccessful')

__field_names__ = ('id', 'base_id_prefix', 'bookmarks', 'created_at', 'history', 'local_id', 'login_id', 'modified_at', 'playlists', 'properties', 'queue', 'subscriptions', 'sync_successful') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

base_id_prefix = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='baseIdPrefix') class-attribute instance-attribute

bookmarks = sgqlc.types.Field(BookmarkListInterface, graphql_name='bookmarks') class-attribute instance-attribute

created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt') class-attribute instance-attribute

history = sgqlc.types.Field('HistoryEntryConnection', graphql_name='history', args=sgqlc.types.ArgDict((('after', sgqlc.types.Arg(String, graphql_name='after', default=None)), ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('before', sgqlc.types.Arg(String, graphql_name='before', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('filter', sgqlc.types.Arg(HistoryEntryFilterB, graphql_name='filter', default=None)), ('order_by', sgqlc.types.Arg(HistoryEntrySortOrder, graphql_name='orderBy', default=None))))) class-attribute instance-attribute

id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') class-attribute instance-attribute

local_id = sgqlc.types.Field(String, graphql_name='localId') class-attribute instance-attribute

login_id = sgqlc.types.Field(String, graphql_name='loginId') class-attribute instance-attribute

modified_at = sgqlc.types.Field(DateTime, graphql_name='modifiedAt') class-attribute instance-attribute

playlists = sgqlc.types.Field('PlaylistConnection', graphql_name='playlists', args=sgqlc.types.ArgDict((('after', sgqlc.types.Arg(String, graphql_name='after', default=None)), ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('before', sgqlc.types.Arg(String, graphql_name='before', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('filter', sgqlc.types.Arg(PlaylistFilterB, graphql_name='filter', default=None)), ('order_by', sgqlc.types.Arg(PlaylistSortOrder, graphql_name='orderBy', default=None))))) class-attribute instance-attribute

properties = sgqlc.types.Field('PropertyConnection', graphql_name='properties', args=sgqlc.types.ArgDict((('after', sgqlc.types.Arg(String, graphql_name='after', default=None)), ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('before', sgqlc.types.Arg(String, graphql_name='before', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('filter', sgqlc.types.Arg(PropertyFilterB, graphql_name='filter', default=None)), ('order_by', sgqlc.types.Arg(PropertySortOrder, graphql_name='orderBy', default=None))))) class-attribute instance-attribute

queue = sgqlc.types.Field('QueueInterface', graphql_name='queue') class-attribute instance-attribute

subscriptions = sgqlc.types.Field('SubscriptionListInterface', graphql_name='subscriptions') class-attribute instance-attribute

sync_successful = sgqlc.types.Field(Boolean, graphql_name='syncSuccessful') class-attribute instance-attribute

EndUserPayload

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2383
2384
2385
2386
2387
2388
2389
class EndUserPayload(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'changed_end_user')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    changed_end_user = sgqlc.types.Field(
        'EndUser', graphql_name='changedEndUser')

__field_names__ = ('client_mutation_id', 'changed_end_user') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

changed_end_user = sgqlc.types.Field('EndUser', graphql_name='changedEndUser') class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

EndUserRelationFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
700
701
702
703
704
class EndUserRelationFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'exists')
    id = sgqlc.types.Field('IDFilterB', graphql_name='id')
    exists = sgqlc.types.Field(BooleanFilterB, graphql_name='exists')

__field_names__ = ('id', 'exists') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

exists = sgqlc.types.Field(BooleanFilterB, graphql_name='exists') class-attribute instance-attribute

id = sgqlc.types.Field('IDFilterB', graphql_name='id') class-attribute instance-attribute

EndUserRemoveAllListInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
707
708
709
710
711
712
713
class EndUserRemoveAllListInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'end_user')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    end_user = sgqlc.types.Field(
        sgqlc.types.non_null(ID), graphql_name='endUser')

__field_names__ = ('client_mutation_id', 'end_user') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

end_user = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='endUser') class-attribute instance-attribute

EndUserSortOrder

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
92
93
94
95
class EndUserSortOrder(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('CREATEDAT_ASC', 'CREATEDAT_DESC', 'LOCALID_ASC', 'LOCALID_DESC', 'LOGINID_ASC',
                   'LOGINID_DESC', 'MODIFIEDAT_ASC', 'MODIFIEDAT_DESC', 'SYNCSUCCESSFUL_ASC', 'SYNCSUCCESSFUL_DESC')

__choices__ = ('CREATEDAT_ASC', 'CREATEDAT_DESC', 'LOCALID_ASC', 'LOCALID_DESC', 'LOGINID_ASC', 'LOGINID_DESC', 'MODIFIEDAT_ASC', 'MODIFIEDAT_DESC', 'SYNCSUCCESSFUL_ASC', 'SYNCSUCCESSFUL_DESC') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

EndUserSyncInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
class EndUserSyncInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('user', 'bookmarks', 'playlists', 'queued_items',
                       'program_set_subscriptions', 'history_entries')
    user = sgqlc.types.Field(sgqlc.types.non_null(
        EndUserCreateInput), graphql_name='user')
    bookmarks = sgqlc.types.Field(sgqlc.types.list_of(
        BookmarkCreateInput), graphql_name='bookmarks')
    playlists = sgqlc.types.Field(sgqlc.types.list_of(
        'PlaylistCreateInput'), graphql_name='playlists')
    queued_items = sgqlc.types.Field(sgqlc.types.list_of(
        'ItemCreateInput'), graphql_name='queuedItems')
    program_set_subscriptions = sgqlc.types.Field(sgqlc.types.list_of(
        'ProgramSetSubscriptionCreateInput'), graphql_name='programSetSubscriptions')
    history_entries = sgqlc.types.Field(sgqlc.types.list_of(
        'HistoryEntryCreateInput'), graphql_name='historyEntries')

__field_names__ = ('user', 'bookmarks', 'playlists', 'queued_items', 'program_set_subscriptions', 'history_entries') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

bookmarks = sgqlc.types.Field(sgqlc.types.list_of(BookmarkCreateInput), graphql_name='bookmarks') class-attribute instance-attribute

history_entries = sgqlc.types.Field(sgqlc.types.list_of('HistoryEntryCreateInput'), graphql_name='historyEntries') class-attribute instance-attribute

playlists = sgqlc.types.Field(sgqlc.types.list_of('PlaylistCreateInput'), graphql_name='playlists') class-attribute instance-attribute

program_set_subscriptions = sgqlc.types.Field(sgqlc.types.list_of('ProgramSetSubscriptionCreateInput'), graphql_name='programSetSubscriptions') class-attribute instance-attribute

queued_items = sgqlc.types.Field(sgqlc.types.list_of('ItemCreateInput'), graphql_name='queuedItems') class-attribute instance-attribute

user = sgqlc.types.Field(sgqlc.types.non_null(EndUserCreateInput), graphql_name='user') class-attribute instance-attribute

EndUserUpdateInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
734
735
736
737
738
739
740
741
742
743
class EndUserUpdateInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'id',
                       'local_id', 'login_id', 'sync_successful')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id')
    local_id = sgqlc.types.Field(String, graphql_name='localId')
    login_id = sgqlc.types.Field(String, graphql_name='loginId')
    sync_successful = sgqlc.types.Field(Boolean, graphql_name='syncSuccessful')

__field_names__ = ('client_mutation_id', 'id', 'local_id', 'login_id', 'sync_successful') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') class-attribute instance-attribute

local_id = sgqlc.types.Field(String, graphql_name='localId') class-attribute instance-attribute

login_id = sgqlc.types.Field(String, graphql_name='loginId') class-attribute instance-attribute

sync_successful = sgqlc.types.Field(Boolean, graphql_name='syncSuccessful') class-attribute instance-attribute

EventLivestream

Bases: sgqlc.types.Type, Teaser, CoreTeaser

Source code in src/libaudiothek/audiothek_schema.py
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
class EventLivestream(sgqlc.types.Type, Teaser, CoreTeaser):
    __schema__ = audiothek_schema
    __field_names__ = ('core_id', 'core_type', 'row_id', 'external_ids', 'publish_date', 'broadcast_start',
                       'duration', 'program_set', 'summary', 'description', 'audios', 'audio_list', 'core_document', 'core')
    core_id = sgqlc.types.Field(String, graphql_name='coreId')
    core_type = sgqlc.types.Field(
        sgqlc.types.non_null(ItemType), graphql_name='coreType')
    row_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='rowId')
    external_ids = sgqlc.types.Field(
        sgqlc.types.list_of(String), graphql_name='externalIds')
    publish_date = sgqlc.types.Field(
        sgqlc.types.non_null(Datetime), graphql_name='publishDate')
    broadcast_start = sgqlc.types.Field(
        sgqlc.types.non_null(Datetime), graphql_name='broadcastStart')
    duration = sgqlc.types.Field(Int, graphql_name='duration', args=sgqlc.types.ArgDict((
        ('variant', sgqlc.types.Arg(DurationVariant,
         graphql_name='variant', default=None)),
    ))
    )
    program_set = sgqlc.types.Field('ProgramSet', graphql_name='programSet')
    summary = sgqlc.types.Field(String, graphql_name='summary')
    description = sgqlc.types.Field(HTML, graphql_name='description')
    audios = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null(AssetType)), graphql_name='audios')
    audio_list = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null(AudioBinary)), graphql_name='audioList')
    core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument')
    core = sgqlc.types.Field(JSON, graphql_name='core', args=sgqlc.types.ArgDict((
        ('filter', sgqlc.types.Arg(String, graphql_name='filter', default=None)),
        ('key', sgqlc.types.Arg(String, graphql_name='key', default=None)),
    ))
    )

__field_names__ = ('core_id', 'core_type', 'row_id', 'external_ids', 'publish_date', 'broadcast_start', 'duration', 'program_set', 'summary', 'description', 'audios', 'audio_list', 'core_document', 'core') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

audio_list = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(AudioBinary)), graphql_name='audioList') class-attribute instance-attribute

audios = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(AssetType)), graphql_name='audios') class-attribute instance-attribute

broadcast_start = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='broadcastStart') class-attribute instance-attribute

core = sgqlc.types.Field(JSON, graphql_name='core', args=sgqlc.types.ArgDict((('filter', sgqlc.types.Arg(String, graphql_name='filter', default=None)), ('key', sgqlc.types.Arg(String, graphql_name='key', default=None))))) class-attribute instance-attribute

core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument') class-attribute instance-attribute

core_id = sgqlc.types.Field(String, graphql_name='coreId') class-attribute instance-attribute

core_type = sgqlc.types.Field(sgqlc.types.non_null(ItemType), graphql_name='coreType') class-attribute instance-attribute

description = sgqlc.types.Field(HTML, graphql_name='description') class-attribute instance-attribute

duration = sgqlc.types.Field(Int, graphql_name='duration', args=sgqlc.types.ArgDict((('variant', sgqlc.types.Arg(DurationVariant, graphql_name='variant', default=None))))) class-attribute instance-attribute

external_ids = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='externalIds') class-attribute instance-attribute

program_set = sgqlc.types.Field('ProgramSet', graphql_name='programSet') class-attribute instance-attribute

publish_date = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='publishDate') class-attribute instance-attribute

row_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='rowId') class-attribute instance-attribute

summary = sgqlc.types.Field(String, graphql_name='summary') class-attribute instance-attribute

FilterCompilationSection

Bases: sgqlc.types.Type, Section

Source code in src/libaudiothek/audiothek_schema.py
4192
4193
4194
4195
class FilterCompilationSection(sgqlc.types.Type, Section):
    __schema__ = audiothek_schema
    __field_names__ = ('meta',)
    meta = sgqlc.types.Field(JSON, graphql_name='meta')

__field_names__ = ('meta') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

meta = sgqlc.types.Field(JSON, graphql_name='meta') class-attribute instance-attribute

FloatFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
746
747
748
749
750
751
752
753
754
755
class FloatFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('eq', 'ne', 'in_', 'gt', 'gte', 'lt', 'lte')
    eq = sgqlc.types.Field(Float, graphql_name='eq')
    ne = sgqlc.types.Field(Float, graphql_name='ne')
    in_ = sgqlc.types.Field(sgqlc.types.list_of(Float), graphql_name='in')
    gt = sgqlc.types.Field(Float, graphql_name='gt')
    gte = sgqlc.types.Field(Float, graphql_name='gte')
    lt = sgqlc.types.Field(Float, graphql_name='lt')
    lte = sgqlc.types.Field(Float, graphql_name='lte')

__field_names__ = ('eq', 'ne', 'in_', 'gt', 'gte', 'lt', 'lte') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

eq = sgqlc.types.Field(Float, graphql_name='eq') class-attribute instance-attribute

gt = sgqlc.types.Field(Float, graphql_name='gt') class-attribute instance-attribute

gte = sgqlc.types.Field(Float, graphql_name='gte') class-attribute instance-attribute

in_ = sgqlc.types.Field(sgqlc.types.list_of(Float), graphql_name='in') class-attribute instance-attribute

lt = sgqlc.types.Field(Float, graphql_name='lt') class-attribute instance-attribute

lte = sgqlc.types.Field(Float, graphql_name='lte') class-attribute instance-attribute

ne = sgqlc.types.Field(Float, graphql_name='ne') class-attribute instance-attribute

Grouping

Bases: sgqlc.types.Type, Node

Source code in src/libaudiothek/audiothek_schema.py
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
class Grouping(sgqlc.types.Type, Node):
    __schema__ = audiothek_schema
    __field_names__ = ('row_id', 'programset_id', 'title', 'item_label', 'type', 'count', 'season_number',
                       'last_modified', 'core_id', 'core_document', 'show_id', 'programset', 'show', 'items_by_group_id')
    row_id = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='rowId')
    programset_id = sgqlc.types.Field(Int, graphql_name='programsetId')
    title = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='title')
    item_label = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='itemLabel')
    type = sgqlc.types.Field(Grouptype, graphql_name='type')
    count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='count')
    season_number = sgqlc.types.Field(Int, graphql_name='seasonNumber')
    last_modified = sgqlc.types.Field(
        sgqlc.types.non_null(Datetime), graphql_name='lastModified')
    core_id = sgqlc.types.Field(String, graphql_name='coreId')
    core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument')
    show_id = sgqlc.types.Field(String, graphql_name='showId')
    programset = sgqlc.types.Field('ProgramSet', graphql_name='programset')
    show = sgqlc.types.Field('ProgramSet', graphql_name='show')
    items_by_group_id = sgqlc.types.Field(sgqlc.types.non_null(ItemsConnection), graphql_name='itemsByGroupId', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            ItemsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))),
        ('condition', sgqlc.types.Arg(ItemCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(ItemFilter, graphql_name='filter', default=None)),
    ))
    )

__field_names__ = ('row_id', 'programset_id', 'title', 'item_label', 'type', 'count', 'season_number', 'last_modified', 'core_id', 'core_document', 'show_id', 'programset', 'show', 'items_by_group_id') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument') class-attribute instance-attribute

core_id = sgqlc.types.Field(String, graphql_name='coreId') class-attribute instance-attribute

count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='count') class-attribute instance-attribute

item_label = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='itemLabel') class-attribute instance-attribute

items_by_group_id = sgqlc.types.Field(sgqlc.types.non_null(ItemsConnection), graphql_name='itemsByGroupId', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ItemsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC'))), ('condition', sgqlc.types.Arg(ItemCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(ItemFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

last_modified = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='lastModified') class-attribute instance-attribute

programset = sgqlc.types.Field('ProgramSet', graphql_name='programset') class-attribute instance-attribute

programset_id = sgqlc.types.Field(Int, graphql_name='programsetId') class-attribute instance-attribute

row_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='rowId') class-attribute instance-attribute

season_number = sgqlc.types.Field(Int, graphql_name='seasonNumber') class-attribute instance-attribute

show = sgqlc.types.Field('ProgramSet', graphql_name='show') class-attribute instance-attribute

show_id = sgqlc.types.Field(String, graphql_name='showId') class-attribute instance-attribute

title = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='title') class-attribute instance-attribute

type = sgqlc.types.Field(Grouptype, graphql_name='type') class-attribute instance-attribute

GroupingCondition

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
class GroupingCondition(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'programset_id', 'title', 'item_label', 'type', 'count',
                       'season_number', 'last_modified', 'core_id', 'core_document', 'show_id')
    id = sgqlc.types.Field(String, graphql_name='id')
    programset_id = sgqlc.types.Field(Int, graphql_name='programsetId')
    title = sgqlc.types.Field(String, graphql_name='title')
    item_label = sgqlc.types.Field(String, graphql_name='itemLabel')
    type = sgqlc.types.Field(Grouptype, graphql_name='type')
    count = sgqlc.types.Field(Int, graphql_name='count')
    season_number = sgqlc.types.Field(Int, graphql_name='seasonNumber')
    last_modified = sgqlc.types.Field(Datetime, graphql_name='lastModified')
    core_id = sgqlc.types.Field(String, graphql_name='coreId')
    core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument')
    show_id = sgqlc.types.Field(String, graphql_name='showId')

__field_names__ = ('id', 'programset_id', 'title', 'item_label', 'type', 'count', 'season_number', 'last_modified', 'core_id', 'core_document', 'show_id') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument') class-attribute instance-attribute

core_id = sgqlc.types.Field(String, graphql_name='coreId') class-attribute instance-attribute

count = sgqlc.types.Field(Int, graphql_name='count') class-attribute instance-attribute

id = sgqlc.types.Field(String, graphql_name='id') class-attribute instance-attribute

item_label = sgqlc.types.Field(String, graphql_name='itemLabel') class-attribute instance-attribute

last_modified = sgqlc.types.Field(Datetime, graphql_name='lastModified') class-attribute instance-attribute

programset_id = sgqlc.types.Field(Int, graphql_name='programsetId') class-attribute instance-attribute

season_number = sgqlc.types.Field(Int, graphql_name='seasonNumber') class-attribute instance-attribute

show_id = sgqlc.types.Field(String, graphql_name='showId') class-attribute instance-attribute

title = sgqlc.types.Field(String, graphql_name='title') class-attribute instance-attribute

type = sgqlc.types.Field(Grouptype, graphql_name='type') class-attribute instance-attribute

GroupingFilter

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
class GroupingFilter(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'programset_id', 'title', 'item_label', 'type', 'count', 'season_number',
                       'last_modified', 'core_id', 'core_document', 'show_id', 'and_', 'or_', 'not_')
    id = sgqlc.types.Field('StringFilter', graphql_name='id')
    programset_id = sgqlc.types.Field('IntFilter', graphql_name='programsetId')
    title = sgqlc.types.Field('StringFilter', graphql_name='title')
    item_label = sgqlc.types.Field('StringFilter', graphql_name='itemLabel')
    type = sgqlc.types.Field('GrouptypeFilter', graphql_name='type')
    count = sgqlc.types.Field('IntFilter', graphql_name='count')
    season_number = sgqlc.types.Field('IntFilter', graphql_name='seasonNumber')
    last_modified = sgqlc.types.Field(
        DatetimeFilter, graphql_name='lastModified')
    core_id = sgqlc.types.Field('StringFilter', graphql_name='coreId')
    core_document = sgqlc.types.Field(
        'JSONFilter', graphql_name='coreDocument')
    show_id = sgqlc.types.Field('StringFilter', graphql_name='showId')
    and_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null('GroupingFilter')), graphql_name='and')
    or_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null('GroupingFilter')), graphql_name='or')
    not_ = sgqlc.types.Field('GroupingFilter', graphql_name='not')

__field_names__ = ('id', 'programset_id', 'title', 'item_label', 'type', 'count', 'season_number', 'last_modified', 'core_id', 'core_document', 'show_id', 'and_', 'or_', 'not_') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('GroupingFilter')), graphql_name='and') class-attribute instance-attribute

core_document = sgqlc.types.Field('JSONFilter', graphql_name='coreDocument') class-attribute instance-attribute

core_id = sgqlc.types.Field('StringFilter', graphql_name='coreId') class-attribute instance-attribute

count = sgqlc.types.Field('IntFilter', graphql_name='count') class-attribute instance-attribute

id = sgqlc.types.Field('StringFilter', graphql_name='id') class-attribute instance-attribute

item_label = sgqlc.types.Field('StringFilter', graphql_name='itemLabel') class-attribute instance-attribute

last_modified = sgqlc.types.Field(DatetimeFilter, graphql_name='lastModified') class-attribute instance-attribute

not_ = sgqlc.types.Field('GroupingFilter', graphql_name='not') class-attribute instance-attribute

or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('GroupingFilter')), graphql_name='or') class-attribute instance-attribute

programset_id = sgqlc.types.Field('IntFilter', graphql_name='programsetId') class-attribute instance-attribute

season_number = sgqlc.types.Field('IntFilter', graphql_name='seasonNumber') class-attribute instance-attribute

show_id = sgqlc.types.Field('StringFilter', graphql_name='showId') class-attribute instance-attribute

title = sgqlc.types.Field('StringFilter', graphql_name='title') class-attribute instance-attribute

type = sgqlc.types.Field('GrouptypeFilter', graphql_name='type') class-attribute instance-attribute

GroupingsConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
class GroupingsConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('nodes', 'edges', 'page_info', 'total_count')
    nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(
        sgqlc.types.non_null('Grouping'))), graphql_name='nodes')
    edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(
        sgqlc.types.non_null('GroupingsEdge'))), graphql_name='edges')
    page_info = sgqlc.types.Field(sgqlc.types.non_null(
        'PageInfo'), graphql_name='pageInfo')
    total_count = sgqlc.types.Field(
        sgqlc.types.non_null(Int), graphql_name='totalCount')

__field_names__ = ('nodes', 'edges', 'page_info', 'total_count') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('GroupingsEdge'))), graphql_name='edges') class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Grouping'))), graphql_name='nodes') class-attribute instance-attribute

page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') class-attribute instance-attribute

total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') class-attribute instance-attribute

GroupingsEdge

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2405
2406
2407
2408
2409
2410
class GroupingsEdge(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('cursor', 'node')
    cursor = sgqlc.types.Field(Cursor, graphql_name='cursor')
    node = sgqlc.types.Field(sgqlc.types.non_null(
        'Grouping'), graphql_name='node')

__field_names__ = ('cursor', 'node') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') class-attribute instance-attribute

node = sgqlc.types.Field(sgqlc.types.non_null('Grouping'), graphql_name='node') class-attribute instance-attribute

GroupingsOrderBy

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
101
102
103
104
class GroupingsOrderBy(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('CORE_DOCUMENT_ASC', 'CORE_DOCUMENT_DESC', 'CORE_ID_ASC', 'CORE_ID_DESC', 'COUNT_ASC', 'COUNT_DESC', 'ID_ASC', 'ID_DESC', 'ITEM_LABEL_ASC', 'ITEM_LABEL_DESC', 'LAST_MODIFIED_ASC', 'LAST_MODIFIED_DESC',
                   'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'PROGRAMSET_ID_ASC', 'PROGRAMSET_ID_DESC', 'SEASON_NUMBER_ASC', 'SEASON_NUMBER_DESC', 'SHOW_ID_ASC', 'SHOW_ID_DESC', 'TITLE_ASC', 'TITLE_DESC', 'TYPE_ASC', 'TYPE_DESC')

__choices__ = ('CORE_DOCUMENT_ASC', 'CORE_DOCUMENT_DESC', 'CORE_ID_ASC', 'CORE_ID_DESC', 'COUNT_ASC', 'COUNT_DESC', 'ID_ASC', 'ID_DESC', 'ITEM_LABEL_ASC', 'ITEM_LABEL_DESC', 'LAST_MODIFIED_ASC', 'LAST_MODIFIED_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'PROGRAMSET_ID_ASC', 'PROGRAMSET_ID_DESC', 'SEASON_NUMBER_ASC', 'SEASON_NUMBER_DESC', 'SHOW_ID_ASC', 'SHOW_ID_DESC', 'TITLE_ASC', 'TITLE_DESC', 'TYPE_ASC', 'TYPE_DESC') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

Grouptype

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
107
108
109
class Grouptype(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('MULTIPART', 'SEASON', 'SERIES')

__choices__ = ('MULTIPART', 'SEASON', 'SERIES') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

GrouptypeFilter

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
class GrouptypeFilter(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from',
                       'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to')
    is_null = sgqlc.types.Field(Boolean, graphql_name='isNull')
    equal_to = sgqlc.types.Field(Grouptype, graphql_name='equalTo')
    not_equal_to = sgqlc.types.Field(Grouptype, graphql_name='notEqualTo')
    distinct_from = sgqlc.types.Field(Grouptype, graphql_name='distinctFrom')
    not_distinct_from = sgqlc.types.Field(
        Grouptype, graphql_name='notDistinctFrom')
    in_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null(Grouptype)), graphql_name='in')
    not_in = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null(Grouptype)), graphql_name='notIn')
    less_than = sgqlc.types.Field(Grouptype, graphql_name='lessThan')
    less_than_or_equal_to = sgqlc.types.Field(
        Grouptype, graphql_name='lessThanOrEqualTo')
    greater_than = sgqlc.types.Field(Grouptype, graphql_name='greaterThan')
    greater_than_or_equal_to = sgqlc.types.Field(
        Grouptype, graphql_name='greaterThanOrEqualTo')

__field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

distinct_from = sgqlc.types.Field(Grouptype, graphql_name='distinctFrom') class-attribute instance-attribute

equal_to = sgqlc.types.Field(Grouptype, graphql_name='equalTo') class-attribute instance-attribute

greater_than = sgqlc.types.Field(Grouptype, graphql_name='greaterThan') class-attribute instance-attribute

greater_than_or_equal_to = sgqlc.types.Field(Grouptype, graphql_name='greaterThanOrEqualTo') class-attribute instance-attribute

in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(Grouptype)), graphql_name='in') class-attribute instance-attribute

is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') class-attribute instance-attribute

less_than = sgqlc.types.Field(Grouptype, graphql_name='lessThan') class-attribute instance-attribute

less_than_or_equal_to = sgqlc.types.Field(Grouptype, graphql_name='lessThanOrEqualTo') class-attribute instance-attribute

not_distinct_from = sgqlc.types.Field(Grouptype, graphql_name='notDistinctFrom') class-attribute instance-attribute

not_equal_to = sgqlc.types.Field(Grouptype, graphql_name='notEqualTo') class-attribute instance-attribute

not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(Grouptype)), graphql_name='notIn') class-attribute instance-attribute

HTML

Bases: sgqlc.types.Scalar

Source code in src/libaudiothek/audiothek_schema.py
112
113
class HTML(sgqlc.types.Scalar):
    __schema__ = audiothek_schema

__schema__ = audiothek_schema class-attribute instance-attribute

HistoryEntry

Bases: sgqlc.types.Type, HistoryEntryInterface

Source code in src/libaudiothek/audiothek_schema.py
4234
4235
4236
class HistoryEntry(sgqlc.types.Type, HistoryEntryInterface):
    __schema__ = audiothek_schema
    __field_names__ = ()

__field_names__ = () class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

HistoryEntryConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
class HistoryEntryConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('count', 'edges', 'nodes', 'page_info')
    count = sgqlc.types.Field(Int, graphql_name='count')
    edges = sgqlc.types.Field(sgqlc.types.list_of(
        'HistoryEntryEdge'), graphql_name='edges')
    nodes = sgqlc.types.Field(sgqlc.types.list_of(
        'HistoryEntryInterface'), graphql_name='nodes')
    page_info = sgqlc.types.Field(sgqlc.types.non_null(
        'PageInfo'), graphql_name='pageInfo')

__field_names__ = ('count', 'edges', 'nodes', 'page_info') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

count = sgqlc.types.Field(Int, graphql_name='count') class-attribute instance-attribute

edges = sgqlc.types.Field(sgqlc.types.list_of('HistoryEntryEdge'), graphql_name='edges') class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.list_of('HistoryEntryInterface'), graphql_name='nodes') class-attribute instance-attribute

page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') class-attribute instance-attribute

HistoryEntryConnectionFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
821
822
823
824
825
class HistoryEntryConnectionFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('empty', 'contains')
    empty = sgqlc.types.Field(BooleanFilterB, graphql_name='empty')
    contains = sgqlc.types.Field(ID, graphql_name='contains')

__field_names__ = ('empty', 'contains') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

contains = sgqlc.types.Field(ID, graphql_name='contains') class-attribute instance-attribute

empty = sgqlc.types.Field(BooleanFilterB, graphql_name='empty') class-attribute instance-attribute

HistoryEntryCreateInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
828
829
830
831
832
833
834
835
836
837
838
839
class HistoryEntryCreateInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'type', 'item',
                       'last_listened_at', 'progress')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    type = sgqlc.types.Field(String, graphql_name='type')
    item = sgqlc.types.Field(sgqlc.types.non_null(
        'ItemCreateInput'), graphql_name='item')
    last_listened_at = sgqlc.types.Field(
        DateTime, graphql_name='lastListenedAt')
    progress = sgqlc.types.Field(Float, graphql_name='progress')

__field_names__ = ('client_mutation_id', 'type', 'item', 'last_listened_at', 'progress') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

item = sgqlc.types.Field(sgqlc.types.non_null('ItemCreateInput'), graphql_name='item') class-attribute instance-attribute

last_listened_at = sgqlc.types.Field(DateTime, graphql_name='lastListenedAt') class-attribute instance-attribute

progress = sgqlc.types.Field(Float, graphql_name='progress') class-attribute instance-attribute

type = sgqlc.types.Field(String, graphql_name='type') class-attribute instance-attribute

HistoryEntryEdge

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2425
2426
2427
2428
2429
2430
class HistoryEntryEdge(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('cursor', 'node')
    cursor = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='cursor')
    node = sgqlc.types.Field('HistoryEntryInterface', graphql_name='node')

__field_names__ = ('cursor', 'node') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

cursor = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='cursor') class-attribute instance-attribute

node = sgqlc.types.Field('HistoryEntryInterface', graphql_name='node') class-attribute instance-attribute

HistoryEntryFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
842
843
844
845
846
847
848
849
850
851
class HistoryEntryFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('created_at', 'last_listened_at',
                       'modified_at', 'progress', 'user')
    created_at = sgqlc.types.Field(DateFilterB, graphql_name='createdAt')
    last_listened_at = sgqlc.types.Field(
        DateFilterB, graphql_name='lastListenedAt')
    modified_at = sgqlc.types.Field(DateFilterB, graphql_name='modifiedAt')
    progress = sgqlc.types.Field(FloatFilterB, graphql_name='progress')
    user = sgqlc.types.Field(EndUserRelationFilterB, graphql_name='user')

__field_names__ = ('created_at', 'last_listened_at', 'modified_at', 'progress', 'user') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

created_at = sgqlc.types.Field(DateFilterB, graphql_name='createdAt') class-attribute instance-attribute

last_listened_at = sgqlc.types.Field(DateFilterB, graphql_name='lastListenedAt') class-attribute instance-attribute

modified_at = sgqlc.types.Field(DateFilterB, graphql_name='modifiedAt') class-attribute instance-attribute

progress = sgqlc.types.Field(FloatFilterB, graphql_name='progress') class-attribute instance-attribute

user = sgqlc.types.Field(EndUserRelationFilterB, graphql_name='user') class-attribute instance-attribute

HistoryEntryInterface

Bases: sgqlc.types.Interface

Source code in src/libaudiothek/audiothek_schema.py
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
class HistoryEntryInterface(sgqlc.types.Interface):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'base_id_prefix', 'created_at', 'item',
                       'last_listened_at', 'modified_at', 'progress', 'user')
    id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id')
    base_id_prefix = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='baseIdPrefix')
    created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
    item = sgqlc.types.Field('Item', graphql_name='item')
    last_listened_at = sgqlc.types.Field(
        DateTime, graphql_name='lastListenedAt')
    modified_at = sgqlc.types.Field(DateTime, graphql_name='modifiedAt')
    progress = sgqlc.types.Field(Float, graphql_name='progress')
    user = sgqlc.types.Field(EndUserInterface, graphql_name='user')

__field_names__ = ('id', 'base_id_prefix', 'created_at', 'item', 'last_listened_at', 'modified_at', 'progress', 'user') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

base_id_prefix = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='baseIdPrefix') class-attribute instance-attribute

created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt') class-attribute instance-attribute

id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') class-attribute instance-attribute

item = sgqlc.types.Field('Item', graphql_name='item') class-attribute instance-attribute

last_listened_at = sgqlc.types.Field(DateTime, graphql_name='lastListenedAt') class-attribute instance-attribute

modified_at = sgqlc.types.Field(DateTime, graphql_name='modifiedAt') class-attribute instance-attribute

progress = sgqlc.types.Field(Float, graphql_name='progress') class-attribute instance-attribute

user = sgqlc.types.Field(EndUserInterface, graphql_name='user') class-attribute instance-attribute

HistoryEntryPayload

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2449
2450
2451
2452
2453
2454
2455
class HistoryEntryPayload(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'changed_history_entry')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    changed_history_entry = sgqlc.types.Field(
        'HistoryEntry', graphql_name='changedHistoryEntry')

__field_names__ = ('client_mutation_id', 'changed_history_entry') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

changed_history_entry = sgqlc.types.Field('HistoryEntry', graphql_name='changedHistoryEntry') class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

HistoryEntryRelationFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
854
855
856
857
858
class HistoryEntryRelationFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'exists')
    id = sgqlc.types.Field('IDFilterB', graphql_name='id')
    exists = sgqlc.types.Field(BooleanFilterB, graphql_name='exists')

__field_names__ = ('id', 'exists') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

exists = sgqlc.types.Field(BooleanFilterB, graphql_name='exists') class-attribute instance-attribute

id = sgqlc.types.Field('IDFilterB', graphql_name='id') class-attribute instance-attribute

HistoryEntryRemoveAllListInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
861
862
863
864
865
866
867
class HistoryEntryRemoveAllListInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'history_entry')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    history_entry = sgqlc.types.Field(
        sgqlc.types.non_null(ID), graphql_name='historyEntry')

__field_names__ = ('client_mutation_id', 'history_entry') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

history_entry = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='historyEntry') class-attribute instance-attribute

HistoryEntrySortOrder

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
116
117
118
119
class HistoryEntrySortOrder(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('CREATEDAT_ASC', 'CREATEDAT_DESC', 'ITEM_ID_ASC', 'ITEM_ID_DESC', 'LASTLISTENEDAT_ASC',
                   'LASTLISTENEDAT_DESC', 'MODIFIEDAT_ASC', 'MODIFIEDAT_DESC', 'PROGRESS_ASC', 'PROGRESS_DESC')

__choices__ = ('CREATEDAT_ASC', 'CREATEDAT_DESC', 'ITEM_ID_ASC', 'ITEM_ID_DESC', 'LASTLISTENEDAT_ASC', 'LASTLISTENEDAT_DESC', 'MODIFIEDAT_ASC', 'MODIFIEDAT_DESC', 'PROGRESS_ASC', 'PROGRESS_DESC') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

HistoryEntryUpdateInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
870
871
872
873
874
875
876
877
878
879
880
class HistoryEntryUpdateInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'id', 'item',
                       'last_listened_at', 'progress')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id')
    item = sgqlc.types.Field('ItemCreateInput', graphql_name='item')
    last_listened_at = sgqlc.types.Field(
        DateTime, graphql_name='lastListenedAt')
    progress = sgqlc.types.Field(Float, graphql_name='progress')

__field_names__ = ('client_mutation_id', 'id', 'item', 'last_listened_at', 'progress') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') class-attribute instance-attribute

item = sgqlc.types.Field('ItemCreateInput', graphql_name='item') class-attribute instance-attribute

last_listened_at = sgqlc.types.Field(DateTime, graphql_name='lastListenedAt') class-attribute instance-attribute

progress = sgqlc.types.Field(Float, graphql_name='progress') class-attribute instance-attribute

IDFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
883
884
885
886
887
888
class IDFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('eq', 'ne', 'in_')
    eq = sgqlc.types.Field(ID, graphql_name='eq')
    ne = sgqlc.types.Field(ID, graphql_name='ne')
    in_ = sgqlc.types.Field(sgqlc.types.list_of(ID), graphql_name='in')

__field_names__ = ('eq', 'ne', 'in_') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

eq = sgqlc.types.Field(ID, graphql_name='eq') class-attribute instance-attribute

in_ = sgqlc.types.Field(sgqlc.types.list_of(ID), graphql_name='in') class-attribute instance-attribute

ne = sgqlc.types.Field(ID, graphql_name='ne') class-attribute instance-attribute

Image

Bases: sgqlc.types.Type, Node

Source code in src/libaudiothek/audiothek_schema.py
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
class Image(sgqlc.types.Type, Node):
    __schema__ = audiothek_schema
    __field_names__ = ('row_id', 'core_document', 'title',
                       'producer_name', 'image_binary_id')
    row_id = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='rowId')
    core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument')
    title = sgqlc.types.Field(String, graphql_name='title')
    producer_name = sgqlc.types.Field(String, graphql_name='producerName')
    image_binary_id = sgqlc.types.Field(String, graphql_name='imageBinaryId')

__field_names__ = ('row_id', 'core_document', 'title', 'producer_name', 'image_binary_id') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument') class-attribute instance-attribute

image_binary_id = sgqlc.types.Field(String, graphql_name='imageBinaryId') class-attribute instance-attribute

producer_name = sgqlc.types.Field(String, graphql_name='producerName') class-attribute instance-attribute

row_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='rowId') class-attribute instance-attribute

title = sgqlc.types.Field(String, graphql_name='title') class-attribute instance-attribute

ImageBinary

Bases: sgqlc.types.Type, Node

Source code in src/libaudiothek/audiothek_schema.py
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
class ImageBinary(sgqlc.types.Type, Node):
    __schema__ = audiothek_schema
    __field_names__ = ('row_id', 'core_document', 'file_location',
                       'media_type', 'width', 'height', 'aspect_ratio')
    row_id = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='rowId')
    core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument')
    file_location = sgqlc.types.Field(String, graphql_name='fileLocation')
    media_type = sgqlc.types.Field(String, graphql_name='mediaType')
    width = sgqlc.types.Field(Int, graphql_name='width')
    height = sgqlc.types.Field(Int, graphql_name='height')
    aspect_ratio = sgqlc.types.Field(String, graphql_name='aspectRatio')

__field_names__ = ('row_id', 'core_document', 'file_location', 'media_type', 'width', 'height', 'aspect_ratio') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

aspect_ratio = sgqlc.types.Field(String, graphql_name='aspectRatio') class-attribute instance-attribute

core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument') class-attribute instance-attribute

file_location = sgqlc.types.Field(String, graphql_name='fileLocation') class-attribute instance-attribute

height = sgqlc.types.Field(Int, graphql_name='height') class-attribute instance-attribute

media_type = sgqlc.types.Field(String, graphql_name='mediaType') class-attribute instance-attribute

row_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='rowId') class-attribute instance-attribute

width = sgqlc.types.Field(Int, graphql_name='width') class-attribute instance-attribute

ImageCollection

Bases: sgqlc.types.Type, Node

Source code in src/libaudiothek/audiothek_schema.py
4265
4266
4267
4268
4269
4270
4271
4272
class ImageCollection(sgqlc.types.Type, Node):
    __schema__ = audiothek_schema
    __field_names__ = ('row_id', 'core_document', 'image_ids')
    row_id = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='rowId')
    core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument')
    image_ids = sgqlc.types.Field(
        sgqlc.types.list_of(String), graphql_name='imageIds')

__field_names__ = ('row_id', 'core_document', 'image_ids') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument') class-attribute instance-attribute

image_ids = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='imageIds') class-attribute instance-attribute

row_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='rowId') class-attribute instance-attribute

ImageType

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2458
2459
2460
2461
2462
2463
2464
class ImageType(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('url', 'url1_x1', 'description', 'attribution')
    url = sgqlc.types.Field(String, graphql_name='url')
    url1_x1 = sgqlc.types.Field(String, graphql_name='url1X1')
    description = sgqlc.types.Field(String, graphql_name='description')
    attribution = sgqlc.types.Field(String, graphql_name='attribution')

__field_names__ = ('url', 'url1_x1', 'description', 'attribution') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

attribution = sgqlc.types.Field(String, graphql_name='attribution') class-attribute instance-attribute

description = sgqlc.types.Field(String, graphql_name='description') class-attribute instance-attribute

url = sgqlc.types.Field(String, graphql_name='url') class-attribute instance-attribute

url1_x1 = sgqlc.types.Field(String, graphql_name='url1X1') class-attribute instance-attribute

ImageTypeFilter

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
891
892
893
894
895
896
897
898
899
900
901
902
903
class ImageTypeFilter(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('url', 'url1_x1', 'description',
                       'attribution', 'and_', 'or_', 'not_')
    url = sgqlc.types.Field('StringFilter', graphql_name='url')
    url1_x1 = sgqlc.types.Field('StringFilter', graphql_name='url1X1')
    description = sgqlc.types.Field('StringFilter', graphql_name='description')
    attribution = sgqlc.types.Field('StringFilter', graphql_name='attribution')
    and_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null('ImageTypeFilter')), graphql_name='and')
    or_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null('ImageTypeFilter')), graphql_name='or')
    not_ = sgqlc.types.Field('ImageTypeFilter', graphql_name='not')

__field_names__ = ('url', 'url1_x1', 'description', 'attribution', 'and_', 'or_', 'not_') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ImageTypeFilter')), graphql_name='and') class-attribute instance-attribute

attribution = sgqlc.types.Field('StringFilter', graphql_name='attribution') class-attribute instance-attribute

description = sgqlc.types.Field('StringFilter', graphql_name='description') class-attribute instance-attribute

not_ = sgqlc.types.Field('ImageTypeFilter', graphql_name='not') class-attribute instance-attribute

or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ImageTypeFilter')), graphql_name='or') class-attribute instance-attribute

url = sgqlc.types.Field('StringFilter', graphql_name='url') class-attribute instance-attribute

url1_x1 = sgqlc.types.Field('StringFilter', graphql_name='url1X1') class-attribute instance-attribute

ImageTypeInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
906
907
908
909
910
911
912
class ImageTypeInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('url', 'url1_x1', 'description', 'attribution')
    url = sgqlc.types.Field(String, graphql_name='url')
    url1_x1 = sgqlc.types.Field(String, graphql_name='url1X1')
    description = sgqlc.types.Field(String, graphql_name='description')
    attribution = sgqlc.types.Field(String, graphql_name='attribution')

__field_names__ = ('url', 'url1_x1', 'description', 'attribution') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

attribution = sgqlc.types.Field(String, graphql_name='attribution') class-attribute instance-attribute

description = sgqlc.types.Field(String, graphql_name='description') class-attribute instance-attribute

url = sgqlc.types.Field(String, graphql_name='url') class-attribute instance-attribute

url1_x1 = sgqlc.types.Field(String, graphql_name='url1X1') class-attribute instance-attribute

ImagesCollectionsBinariesView

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
class ImagesCollectionsBinariesView(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('image_collection_id', 'image_id', 'title', 'producer_name',
                       'image_binary_id', 'aspect_ratio', 'height', 'width', 'media_type', 'file_location', 'url')
    image_collection_id = sgqlc.types.Field(
        String, graphql_name='imageCollectionId')
    image_id = sgqlc.types.Field(String, graphql_name='imageId')
    title = sgqlc.types.Field(String, graphql_name='title')
    producer_name = sgqlc.types.Field(String, graphql_name='producerName')
    image_binary_id = sgqlc.types.Field(String, graphql_name='imageBinaryId')
    aspect_ratio = sgqlc.types.Field(String, graphql_name='aspectRatio')
    height = sgqlc.types.Field(Int, graphql_name='height')
    width = sgqlc.types.Field(Int, graphql_name='width')
    media_type = sgqlc.types.Field(String, graphql_name='mediaType')
    file_location = sgqlc.types.Field(String, graphql_name='fileLocation')
    url = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='url')

__field_names__ = ('image_collection_id', 'image_id', 'title', 'producer_name', 'image_binary_id', 'aspect_ratio', 'height', 'width', 'media_type', 'file_location', 'url') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

aspect_ratio = sgqlc.types.Field(String, graphql_name='aspectRatio') class-attribute instance-attribute

file_location = sgqlc.types.Field(String, graphql_name='fileLocation') class-attribute instance-attribute

height = sgqlc.types.Field(Int, graphql_name='height') class-attribute instance-attribute

image_binary_id = sgqlc.types.Field(String, graphql_name='imageBinaryId') class-attribute instance-attribute

image_collection_id = sgqlc.types.Field(String, graphql_name='imageCollectionId') class-attribute instance-attribute

image_id = sgqlc.types.Field(String, graphql_name='imageId') class-attribute instance-attribute

media_type = sgqlc.types.Field(String, graphql_name='mediaType') class-attribute instance-attribute

producer_name = sgqlc.types.Field(String, graphql_name='producerName') class-attribute instance-attribute

title = sgqlc.types.Field(String, graphql_name='title') class-attribute instance-attribute

url = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='url') class-attribute instance-attribute

width = sgqlc.types.Field(Int, graphql_name='width') class-attribute instance-attribute

ImagesCollectionsBinariesViewCondition

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
class ImagesCollectionsBinariesViewCondition(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('image_collection_id', 'image_id', 'title', 'producer_name',
                       'image_binary_id', 'aspect_ratio', 'height', 'width', 'media_type', 'file_location')
    image_collection_id = sgqlc.types.Field(
        String, graphql_name='imageCollectionId')
    image_id = sgqlc.types.Field(String, graphql_name='imageId')
    title = sgqlc.types.Field(String, graphql_name='title')
    producer_name = sgqlc.types.Field(String, graphql_name='producerName')
    image_binary_id = sgqlc.types.Field(String, graphql_name='imageBinaryId')
    aspect_ratio = sgqlc.types.Field(String, graphql_name='aspectRatio')
    height = sgqlc.types.Field(Int, graphql_name='height')
    width = sgqlc.types.Field(Int, graphql_name='width')
    media_type = sgqlc.types.Field(String, graphql_name='mediaType')
    file_location = sgqlc.types.Field(String, graphql_name='fileLocation')

__field_names__ = ('image_collection_id', 'image_id', 'title', 'producer_name', 'image_binary_id', 'aspect_ratio', 'height', 'width', 'media_type', 'file_location') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

aspect_ratio = sgqlc.types.Field(String, graphql_name='aspectRatio') class-attribute instance-attribute

file_location = sgqlc.types.Field(String, graphql_name='fileLocation') class-attribute instance-attribute

height = sgqlc.types.Field(Int, graphql_name='height') class-attribute instance-attribute

image_binary_id = sgqlc.types.Field(String, graphql_name='imageBinaryId') class-attribute instance-attribute

image_collection_id = sgqlc.types.Field(String, graphql_name='imageCollectionId') class-attribute instance-attribute

image_id = sgqlc.types.Field(String, graphql_name='imageId') class-attribute instance-attribute

media_type = sgqlc.types.Field(String, graphql_name='mediaType') class-attribute instance-attribute

producer_name = sgqlc.types.Field(String, graphql_name='producerName') class-attribute instance-attribute

title = sgqlc.types.Field(String, graphql_name='title') class-attribute instance-attribute

width = sgqlc.types.Field(Int, graphql_name='width') class-attribute instance-attribute

ImagesCollectionsBinariesViewFilter

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
class ImagesCollectionsBinariesViewFilter(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('image_collection_id', 'image_id', 'title', 'producer_name', 'image_binary_id',
                       'aspect_ratio', 'height', 'width', 'media_type', 'file_location', 'and_', 'or_', 'not_')
    image_collection_id = sgqlc.types.Field(
        'StringFilter', graphql_name='imageCollectionId')
    image_id = sgqlc.types.Field('StringFilter', graphql_name='imageId')
    title = sgqlc.types.Field('StringFilter', graphql_name='title')
    producer_name = sgqlc.types.Field(
        'StringFilter', graphql_name='producerName')
    image_binary_id = sgqlc.types.Field(
        'StringFilter', graphql_name='imageBinaryId')
    aspect_ratio = sgqlc.types.Field(
        'StringFilter', graphql_name='aspectRatio')
    height = sgqlc.types.Field('IntFilter', graphql_name='height')
    width = sgqlc.types.Field('IntFilter', graphql_name='width')
    media_type = sgqlc.types.Field('StringFilter', graphql_name='mediaType')
    file_location = sgqlc.types.Field(
        'StringFilter', graphql_name='fileLocation')
    and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(
        'ImagesCollectionsBinariesViewFilter')), graphql_name='and')
    or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(
        'ImagesCollectionsBinariesViewFilter')), graphql_name='or')
    not_ = sgqlc.types.Field(
        'ImagesCollectionsBinariesViewFilter', graphql_name='not')

__field_names__ = ('image_collection_id', 'image_id', 'title', 'producer_name', 'image_binary_id', 'aspect_ratio', 'height', 'width', 'media_type', 'file_location', 'and_', 'or_', 'not_') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ImagesCollectionsBinariesViewFilter')), graphql_name='and') class-attribute instance-attribute

aspect_ratio = sgqlc.types.Field('StringFilter', graphql_name='aspectRatio') class-attribute instance-attribute

file_location = sgqlc.types.Field('StringFilter', graphql_name='fileLocation') class-attribute instance-attribute

height = sgqlc.types.Field('IntFilter', graphql_name='height') class-attribute instance-attribute

image_binary_id = sgqlc.types.Field('StringFilter', graphql_name='imageBinaryId') class-attribute instance-attribute

image_collection_id = sgqlc.types.Field('StringFilter', graphql_name='imageCollectionId') class-attribute instance-attribute

image_id = sgqlc.types.Field('StringFilter', graphql_name='imageId') class-attribute instance-attribute

media_type = sgqlc.types.Field('StringFilter', graphql_name='mediaType') class-attribute instance-attribute

not_ = sgqlc.types.Field('ImagesCollectionsBinariesViewFilter', graphql_name='not') class-attribute instance-attribute

or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ImagesCollectionsBinariesViewFilter')), graphql_name='or') class-attribute instance-attribute

producer_name = sgqlc.types.Field('StringFilter', graphql_name='producerName') class-attribute instance-attribute

title = sgqlc.types.Field('StringFilter', graphql_name='title') class-attribute instance-attribute

width = sgqlc.types.Field('IntFilter', graphql_name='width') class-attribute instance-attribute

ImagesCollectionsBinariesViewsConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
class ImagesCollectionsBinariesViewsConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('nodes', 'edges', 'page_info', 'total_count')
    nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(
        sgqlc.types.non_null(ImagesCollectionsBinariesView))), graphql_name='nodes')
    edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(
        sgqlc.types.non_null('ImagesCollectionsBinariesViewsEdge'))), graphql_name='edges')
    page_info = sgqlc.types.Field(sgqlc.types.non_null(
        'PageInfo'), graphql_name='pageInfo')
    total_count = sgqlc.types.Field(
        sgqlc.types.non_null(Int), graphql_name='totalCount')

__field_names__ = ('nodes', 'edges', 'page_info', 'total_count') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ImagesCollectionsBinariesViewsEdge'))), graphql_name='edges') class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(ImagesCollectionsBinariesView))), graphql_name='nodes') class-attribute instance-attribute

page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') class-attribute instance-attribute

total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') class-attribute instance-attribute

ImagesCollectionsBinariesViewsEdge

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2498
2499
2500
2501
2502
2503
class ImagesCollectionsBinariesViewsEdge(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('cursor', 'node')
    cursor = sgqlc.types.Field(Cursor, graphql_name='cursor')
    node = sgqlc.types.Field(sgqlc.types.non_null(
        ImagesCollectionsBinariesView), graphql_name='node')

__field_names__ = ('cursor', 'node') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') class-attribute instance-attribute

node = sgqlc.types.Field(sgqlc.types.non_null(ImagesCollectionsBinariesView), graphql_name='node') class-attribute instance-attribute

ImagesCollectionsBinariesViewsOrderBy

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
125
126
127
128
class ImagesCollectionsBinariesViewsOrderBy(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('ASPECT_RATIO_ASC', 'ASPECT_RATIO_DESC', 'FILE_LOCATION_ASC', 'FILE_LOCATION_DESC', 'HEIGHT_ASC', 'HEIGHT_DESC', 'IMAGE_BINARY_ID_ASC', 'IMAGE_BINARY_ID_DESC', 'IMAGE_COLLECTION_ID_ASC',
                   'IMAGE_COLLECTION_ID_DESC', 'IMAGE_ID_ASC', 'IMAGE_ID_DESC', 'MEDIA_TYPE_ASC', 'MEDIA_TYPE_DESC', 'NATURAL', 'PRODUCER_NAME_ASC', 'PRODUCER_NAME_DESC', 'TITLE_ASC', 'TITLE_DESC', 'WIDTH_ASC', 'WIDTH_DESC')

__choices__ = ('ASPECT_RATIO_ASC', 'ASPECT_RATIO_DESC', 'FILE_LOCATION_ASC', 'FILE_LOCATION_DESC', 'HEIGHT_ASC', 'HEIGHT_DESC', 'IMAGE_BINARY_ID_ASC', 'IMAGE_BINARY_ID_DESC', 'IMAGE_COLLECTION_ID_ASC', 'IMAGE_COLLECTION_ID_DESC', 'IMAGE_ID_ASC', 'IMAGE_ID_DESC', 'MEDIA_TYPE_ASC', 'MEDIA_TYPE_DESC', 'NATURAL', 'PRODUCER_NAME_ASC', 'PRODUCER_NAME_DESC', 'TITLE_ASC', 'TITLE_DESC', 'WIDTH_ASC', 'WIDTH_DESC') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

IntFilter

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
class IntFilter(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from',
                       'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to')
    is_null = sgqlc.types.Field(Boolean, graphql_name='isNull')
    equal_to = sgqlc.types.Field(Int, graphql_name='equalTo')
    not_equal_to = sgqlc.types.Field(Int, graphql_name='notEqualTo')
    distinct_from = sgqlc.types.Field(Int, graphql_name='distinctFrom')
    not_distinct_from = sgqlc.types.Field(Int, graphql_name='notDistinctFrom')
    in_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null(Int)), graphql_name='in')
    not_in = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null(Int)), graphql_name='notIn')
    less_than = sgqlc.types.Field(Int, graphql_name='lessThan')
    less_than_or_equal_to = sgqlc.types.Field(
        Int, graphql_name='lessThanOrEqualTo')
    greater_than = sgqlc.types.Field(Int, graphql_name='greaterThan')
    greater_than_or_equal_to = sgqlc.types.Field(
        Int, graphql_name='greaterThanOrEqualTo')

__field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

distinct_from = sgqlc.types.Field(Int, graphql_name='distinctFrom') class-attribute instance-attribute

equal_to = sgqlc.types.Field(Int, graphql_name='equalTo') class-attribute instance-attribute

greater_than = sgqlc.types.Field(Int, graphql_name='greaterThan') class-attribute instance-attribute

greater_than_or_equal_to = sgqlc.types.Field(Int, graphql_name='greaterThanOrEqualTo') class-attribute instance-attribute

in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(Int)), graphql_name='in') class-attribute instance-attribute

is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') class-attribute instance-attribute

less_than = sgqlc.types.Field(Int, graphql_name='lessThan') class-attribute instance-attribute

less_than_or_equal_to = sgqlc.types.Field(Int, graphql_name='lessThanOrEqualTo') class-attribute instance-attribute

not_distinct_from = sgqlc.types.Field(Int, graphql_name='notDistinctFrom') class-attribute instance-attribute

not_equal_to = sgqlc.types.Field(Int, graphql_name='notEqualTo') class-attribute instance-attribute

not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(Int)), graphql_name='notIn') class-attribute instance-attribute

IntFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
980
981
982
983
984
985
986
987
988
989
class IntFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('eq', 'ne', 'in_', 'gt', 'gte', 'lt', 'lte')
    eq = sgqlc.types.Field(Int, graphql_name='eq')
    ne = sgqlc.types.Field(Int, graphql_name='ne')
    in_ = sgqlc.types.Field(sgqlc.types.list_of(Int), graphql_name='in')
    gt = sgqlc.types.Field(Int, graphql_name='gt')
    gte = sgqlc.types.Field(Int, graphql_name='gte')
    lt = sgqlc.types.Field(Int, graphql_name='lt')
    lte = sgqlc.types.Field(Int, graphql_name='lte')

__field_names__ = ('eq', 'ne', 'in_', 'gt', 'gte', 'lt', 'lte') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

eq = sgqlc.types.Field(Int, graphql_name='eq') class-attribute instance-attribute

gt = sgqlc.types.Field(Int, graphql_name='gt') class-attribute instance-attribute

gte = sgqlc.types.Field(Int, graphql_name='gte') class-attribute instance-attribute

in_ = sgqlc.types.Field(sgqlc.types.list_of(Int), graphql_name='in') class-attribute instance-attribute

lt = sgqlc.types.Field(Int, graphql_name='lt') class-attribute instance-attribute

lte = sgqlc.types.Field(Int, graphql_name='lte') class-attribute instance-attribute

ne = sgqlc.types.Field(Int, graphql_name='ne') class-attribute instance-attribute

Item

Bases: sgqlc.types.Type, Node, Teaser, CoreTeaser

Source code in src/libaudiothek/audiothek_schema.py
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
class Item(sgqlc.types.Type, Node, Teaser, CoreTeaser):
    __schema__ = audiothek_schema
    __field_names__ = ('row_id', 'publish_date', 'codex_pending', 'is_published', 'program_set_id', 'title_without_number', 'group_id', 'episode_number', 'max_group_number', 'codex_last_published', 'external_ids', 'editorial_category_id', 'core_id', 'item_type', 'core_document', 'external_id', 'image_collection_id', 'show_id', 'first_publish_date', 'audio_binary_id',
                       'status', 'program_set', 'group', 'editorial_category', 'concepts', 'transcript', 'audio_list', 'editorial_categories', 'editorial_categories_list', 'has_core_document', 'has_synthetic_row_id', 'images', 'images_list', 'next_episode', 'title_clean', 'summary', 'description', 'duration', 'grouping', 'audios', 'keywords', 'subjects', 'recommendations', 'core')
    row_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='rowId')
    publish_date = sgqlc.types.Field(
        sgqlc.types.non_null(Datetime), graphql_name='publishDate')
    codex_pending = sgqlc.types.Field(
        sgqlc.types.non_null(Boolean), graphql_name='codexPending')
    is_published = sgqlc.types.Field(
        sgqlc.types.non_null(Boolean), graphql_name='isPublished')
    program_set_id = sgqlc.types.Field(Int, graphql_name='programSetId')
    title_without_number = sgqlc.types.Field(
        String, graphql_name='titleWithoutNumber')
    group_id = sgqlc.types.Field(String, graphql_name='groupId')
    episode_number = sgqlc.types.Field(Int, graphql_name='episodeNumber')
    max_group_number = sgqlc.types.Field(Int, graphql_name='maxGroupNumber')
    codex_last_published = sgqlc.types.Field(
        BigInt, graphql_name='codexLastPublished')
    external_ids = sgqlc.types.Field(
        sgqlc.types.list_of(String), graphql_name='externalIds')
    editorial_category_id = sgqlc.types.Field(
        String, graphql_name='editorialCategoryId')
    core_id = sgqlc.types.Field(String, graphql_name='coreId')
    item_type = sgqlc.types.Field(
        sgqlc.types.non_null(ItemType), graphql_name='itemType')
    core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument')
    external_id = sgqlc.types.Field(String, graphql_name='externalId')
    image_collection_id = sgqlc.types.Field(
        String, graphql_name='imageCollectionId')
    show_id = sgqlc.types.Field(String, graphql_name='showId')
    first_publish_date = sgqlc.types.Field(
        Datetime, graphql_name='firstPublishDate')
    audio_binary_id = sgqlc.types.Field(String, graphql_name='audioBinaryId')
    status = sgqlc.types.Field(Status, graphql_name='status')
    program_set = sgqlc.types.Field('ProgramSet', graphql_name='programSet')
    group = sgqlc.types.Field(Grouping, graphql_name='group')
    editorial_category = sgqlc.types.Field(
        EditorialCategory, graphql_name='editorialCategory')
    concepts = sgqlc.types.Field(sgqlc.types.non_null(ConceptsConnection), graphql_name='concepts', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            ConceptsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))),
        ('condition', sgqlc.types.Arg(ConceptCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(ConceptFilter, graphql_name='filter', default=None)),
    ))
    )
    transcript = sgqlc.types.Field('Transcript', graphql_name='transcript')
    audio_list = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(AudioBinary)), graphql_name='audioList', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
    ))
    )
    editorial_categories = sgqlc.types.Field(sgqlc.types.non_null(EditorialCategoriesConnection), graphql_name='editorialCategories', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            EditorialCategoriesOrderBy)), graphql_name='orderBy', default=None)),
        ('condition', sgqlc.types.Arg(EditorialCategoryCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(EditorialCategoryFilter,
         graphql_name='filter', default=None)),
    ))
    )
    editorial_categories_list = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(EditorialCategory)), graphql_name='editorialCategoriesList', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            EditorialCategoriesOrderBy)), graphql_name='orderBy', default=None)),
        ('condition', sgqlc.types.Arg(EditorialCategoryCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(EditorialCategoryFilter,
         graphql_name='filter', default=None)),
    ))
    )
    has_core_document = sgqlc.types.Field(
        Boolean, graphql_name='hasCoreDocument')
    has_synthetic_row_id = sgqlc.types.Field(
        Boolean, graphql_name='hasSyntheticRowId')
    images = sgqlc.types.Field(sgqlc.types.non_null(ImagesCollectionsBinariesViewsConnection), graphql_name='images', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
    ))
    )
    images_list = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ImagesCollectionsBinariesView)), graphql_name='imagesList', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
    ))
    )
    next_episode = sgqlc.types.Field('Item', graphql_name='nextEpisode')
    title_clean = sgqlc.types.Field(String, graphql_name='titleClean')
    summary = sgqlc.types.Field(String, graphql_name='summary')
    description = sgqlc.types.Field(HTML, graphql_name='description')
    duration = sgqlc.types.Field(Int, graphql_name='duration', args=sgqlc.types.ArgDict((
        ('variant', sgqlc.types.Arg(DurationVariant,
         graphql_name='variant', default=None)),
    ))
    )
    grouping = sgqlc.types.Field(JSON, graphql_name='grouping')
    audios = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null(AssetType)), graphql_name='audios')
    keywords = sgqlc.types.Field(JSON, graphql_name='keywords')
    subjects = sgqlc.types.Field(JSON, graphql_name='subjects')
    recommendations = sgqlc.types.Field(RecommendationsConnection, graphql_name='recommendations', args=sgqlc.types.ArgDict((
        ('variant', sgqlc.types.Arg(sgqlc.types.non_null(
            ItemRecVariant), graphql_name='variant', default=None)),
    ))
    )
    core = sgqlc.types.Field(JSON, graphql_name='core', args=sgqlc.types.ArgDict((
        ('filter', sgqlc.types.Arg(String, graphql_name='filter', default=None)),
        ('key', sgqlc.types.Arg(String, graphql_name='key', default=None)),
    ))
    )

__field_names__ = ('row_id', 'publish_date', 'codex_pending', 'is_published', 'program_set_id', 'title_without_number', 'group_id', 'episode_number', 'max_group_number', 'codex_last_published', 'external_ids', 'editorial_category_id', 'core_id', 'item_type', 'core_document', 'external_id', 'image_collection_id', 'show_id', 'first_publish_date', 'audio_binary_id', 'status', 'program_set', 'group', 'editorial_category', 'concepts', 'transcript', 'audio_list', 'editorial_categories', 'editorial_categories_list', 'has_core_document', 'has_synthetic_row_id', 'images', 'images_list', 'next_episode', 'title_clean', 'summary', 'description', 'duration', 'grouping', 'audios', 'keywords', 'subjects', 'recommendations', 'core') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

audio_binary_id = sgqlc.types.Field(String, graphql_name='audioBinaryId') class-attribute instance-attribute

audio_list = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(AudioBinary)), graphql_name='audioList', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None))))) class-attribute instance-attribute

audios = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(AssetType)), graphql_name='audios') class-attribute instance-attribute

codex_last_published = sgqlc.types.Field(BigInt, graphql_name='codexLastPublished') class-attribute instance-attribute

codex_pending = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='codexPending') class-attribute instance-attribute

concepts = sgqlc.types.Field(sgqlc.types.non_null(ConceptsConnection), graphql_name='concepts', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ConceptsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC'))), ('condition', sgqlc.types.Arg(ConceptCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(ConceptFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

core = sgqlc.types.Field(JSON, graphql_name='core', args=sgqlc.types.ArgDict((('filter', sgqlc.types.Arg(String, graphql_name='filter', default=None)), ('key', sgqlc.types.Arg(String, graphql_name='key', default=None))))) class-attribute instance-attribute

core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument') class-attribute instance-attribute

core_id = sgqlc.types.Field(String, graphql_name='coreId') class-attribute instance-attribute

description = sgqlc.types.Field(HTML, graphql_name='description') class-attribute instance-attribute

duration = sgqlc.types.Field(Int, graphql_name='duration', args=sgqlc.types.ArgDict((('variant', sgqlc.types.Arg(DurationVariant, graphql_name='variant', default=None))))) class-attribute instance-attribute

editorial_categories = sgqlc.types.Field(sgqlc.types.non_null(EditorialCategoriesConnection), graphql_name='editorialCategories', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(EditorialCategoriesOrderBy)), graphql_name='orderBy', default=None)), ('condition', sgqlc.types.Arg(EditorialCategoryCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(EditorialCategoryFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

editorial_categories_list = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(EditorialCategory)), graphql_name='editorialCategoriesList', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(EditorialCategoriesOrderBy)), graphql_name='orderBy', default=None)), ('condition', sgqlc.types.Arg(EditorialCategoryCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(EditorialCategoryFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

editorial_category = sgqlc.types.Field(EditorialCategory, graphql_name='editorialCategory') class-attribute instance-attribute

editorial_category_id = sgqlc.types.Field(String, graphql_name='editorialCategoryId') class-attribute instance-attribute

episode_number = sgqlc.types.Field(Int, graphql_name='episodeNumber') class-attribute instance-attribute

external_id = sgqlc.types.Field(String, graphql_name='externalId') class-attribute instance-attribute

external_ids = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='externalIds') class-attribute instance-attribute

first_publish_date = sgqlc.types.Field(Datetime, graphql_name='firstPublishDate') class-attribute instance-attribute

group = sgqlc.types.Field(Grouping, graphql_name='group') class-attribute instance-attribute

group_id = sgqlc.types.Field(String, graphql_name='groupId') class-attribute instance-attribute

grouping = sgqlc.types.Field(JSON, graphql_name='grouping') class-attribute instance-attribute

has_core_document = sgqlc.types.Field(Boolean, graphql_name='hasCoreDocument') class-attribute instance-attribute

has_synthetic_row_id = sgqlc.types.Field(Boolean, graphql_name='hasSyntheticRowId') class-attribute instance-attribute

image_collection_id = sgqlc.types.Field(String, graphql_name='imageCollectionId') class-attribute instance-attribute

images = sgqlc.types.Field(sgqlc.types.non_null(ImagesCollectionsBinariesViewsConnection), graphql_name='images', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None))))) class-attribute instance-attribute

images_list = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ImagesCollectionsBinariesView)), graphql_name='imagesList', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None))))) class-attribute instance-attribute

is_published = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='isPublished') class-attribute instance-attribute

item_type = sgqlc.types.Field(sgqlc.types.non_null(ItemType), graphql_name='itemType') class-attribute instance-attribute

keywords = sgqlc.types.Field(JSON, graphql_name='keywords') class-attribute instance-attribute

max_group_number = sgqlc.types.Field(Int, graphql_name='maxGroupNumber') class-attribute instance-attribute

next_episode = sgqlc.types.Field('Item', graphql_name='nextEpisode') class-attribute instance-attribute

program_set = sgqlc.types.Field('ProgramSet', graphql_name='programSet') class-attribute instance-attribute

program_set_id = sgqlc.types.Field(Int, graphql_name='programSetId') class-attribute instance-attribute

publish_date = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='publishDate') class-attribute instance-attribute

recommendations = sgqlc.types.Field(RecommendationsConnection, graphql_name='recommendations', args=sgqlc.types.ArgDict((('variant', sgqlc.types.Arg(sgqlc.types.non_null(ItemRecVariant), graphql_name='variant', default=None))))) class-attribute instance-attribute

row_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='rowId') class-attribute instance-attribute

show_id = sgqlc.types.Field(String, graphql_name='showId') class-attribute instance-attribute

status = sgqlc.types.Field(Status, graphql_name='status') class-attribute instance-attribute

subjects = sgqlc.types.Field(JSON, graphql_name='subjects') class-attribute instance-attribute

summary = sgqlc.types.Field(String, graphql_name='summary') class-attribute instance-attribute

title_clean = sgqlc.types.Field(String, graphql_name='titleClean') class-attribute instance-attribute

title_without_number = sgqlc.types.Field(String, graphql_name='titleWithoutNumber') class-attribute instance-attribute

transcript = sgqlc.types.Field('Transcript', graphql_name='transcript') class-attribute instance-attribute

ItemCondition

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
class ItemCondition(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'backend_document_hash', 'backend_document', 'publish_date', 'codex_pending', 'feed_document', 'feed_document_modified_at', 'is_published', 'depublished_at', 'program_set_id', 'title', 'title_without_number', 'group_id',
                       'episode_number', 'max_group_number', 'codex_last_published', 'external_ids', 'image', 'editorial_category_id', 'core_id', 'item_type', 'core_document', 'external_id', 'image_collection_id', 'show_id', 'first_publish_date', 'audio_binary_id', 'status')
    id = sgqlc.types.Field(Int, graphql_name='id')
    backend_document_hash = sgqlc.types.Field(
        String, graphql_name='backendDocumentHash')
    backend_document = sgqlc.types.Field(JSON, graphql_name='backendDocument')
    publish_date = sgqlc.types.Field(Datetime, graphql_name='publishDate')
    codex_pending = sgqlc.types.Field(Boolean, graphql_name='codexPending')
    feed_document = sgqlc.types.Field(JSON, graphql_name='feedDocument')
    feed_document_modified_at = sgqlc.types.Field(
        BigInt, graphql_name='feedDocumentModifiedAt')
    is_published = sgqlc.types.Field(Boolean, graphql_name='isPublished')
    depublished_at = sgqlc.types.Field(BigInt, graphql_name='depublishedAt')
    program_set_id = sgqlc.types.Field(Int, graphql_name='programSetId')
    title = sgqlc.types.Field(String, graphql_name='title')
    title_without_number = sgqlc.types.Field(
        String, graphql_name='titleWithoutNumber')
    group_id = sgqlc.types.Field(String, graphql_name='groupId')
    episode_number = sgqlc.types.Field(Int, graphql_name='episodeNumber')
    max_group_number = sgqlc.types.Field(Int, graphql_name='maxGroupNumber')
    codex_last_published = sgqlc.types.Field(
        BigInt, graphql_name='codexLastPublished')
    external_ids = sgqlc.types.Field(
        sgqlc.types.list_of(String), graphql_name='externalIds')
    image = sgqlc.types.Field(ImageTypeInput, graphql_name='image')
    editorial_category_id = sgqlc.types.Field(
        String, graphql_name='editorialCategoryId')
    core_id = sgqlc.types.Field(String, graphql_name='coreId')
    item_type = sgqlc.types.Field(ItemType, graphql_name='itemType')
    core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument')
    external_id = sgqlc.types.Field(String, graphql_name='externalId')
    image_collection_id = sgqlc.types.Field(
        String, graphql_name='imageCollectionId')
    show_id = sgqlc.types.Field(String, graphql_name='showId')
    first_publish_date = sgqlc.types.Field(
        Datetime, graphql_name='firstPublishDate')
    audio_binary_id = sgqlc.types.Field(String, graphql_name='audioBinaryId')
    status = sgqlc.types.Field(Status, graphql_name='status')

__field_names__ = ('id', 'backend_document_hash', 'backend_document', 'publish_date', 'codex_pending', 'feed_document', 'feed_document_modified_at', 'is_published', 'depublished_at', 'program_set_id', 'title', 'title_without_number', 'group_id', 'episode_number', 'max_group_number', 'codex_last_published', 'external_ids', 'image', 'editorial_category_id', 'core_id', 'item_type', 'core_document', 'external_id', 'image_collection_id', 'show_id', 'first_publish_date', 'audio_binary_id', 'status') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

audio_binary_id = sgqlc.types.Field(String, graphql_name='audioBinaryId') class-attribute instance-attribute

backend_document = sgqlc.types.Field(JSON, graphql_name='backendDocument') class-attribute instance-attribute

backend_document_hash = sgqlc.types.Field(String, graphql_name='backendDocumentHash') class-attribute instance-attribute

codex_last_published = sgqlc.types.Field(BigInt, graphql_name='codexLastPublished') class-attribute instance-attribute

codex_pending = sgqlc.types.Field(Boolean, graphql_name='codexPending') class-attribute instance-attribute

core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument') class-attribute instance-attribute

core_id = sgqlc.types.Field(String, graphql_name='coreId') class-attribute instance-attribute

depublished_at = sgqlc.types.Field(BigInt, graphql_name='depublishedAt') class-attribute instance-attribute

editorial_category_id = sgqlc.types.Field(String, graphql_name='editorialCategoryId') class-attribute instance-attribute

episode_number = sgqlc.types.Field(Int, graphql_name='episodeNumber') class-attribute instance-attribute

external_id = sgqlc.types.Field(String, graphql_name='externalId') class-attribute instance-attribute

external_ids = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='externalIds') class-attribute instance-attribute

feed_document = sgqlc.types.Field(JSON, graphql_name='feedDocument') class-attribute instance-attribute

feed_document_modified_at = sgqlc.types.Field(BigInt, graphql_name='feedDocumentModifiedAt') class-attribute instance-attribute

first_publish_date = sgqlc.types.Field(Datetime, graphql_name='firstPublishDate') class-attribute instance-attribute

group_id = sgqlc.types.Field(String, graphql_name='groupId') class-attribute instance-attribute

id = sgqlc.types.Field(Int, graphql_name='id') class-attribute instance-attribute

image = sgqlc.types.Field(ImageTypeInput, graphql_name='image') class-attribute instance-attribute

image_collection_id = sgqlc.types.Field(String, graphql_name='imageCollectionId') class-attribute instance-attribute

is_published = sgqlc.types.Field(Boolean, graphql_name='isPublished') class-attribute instance-attribute

item_type = sgqlc.types.Field(ItemType, graphql_name='itemType') class-attribute instance-attribute

max_group_number = sgqlc.types.Field(Int, graphql_name='maxGroupNumber') class-attribute instance-attribute

program_set_id = sgqlc.types.Field(Int, graphql_name='programSetId') class-attribute instance-attribute

publish_date = sgqlc.types.Field(Datetime, graphql_name='publishDate') class-attribute instance-attribute

show_id = sgqlc.types.Field(String, graphql_name='showId') class-attribute instance-attribute

status = sgqlc.types.Field(Status, graphql_name='status') class-attribute instance-attribute

title = sgqlc.types.Field(String, graphql_name='title') class-attribute instance-attribute

title_without_number = sgqlc.types.Field(String, graphql_name='titleWithoutNumber') class-attribute instance-attribute

ItemConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
class ItemConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('count', 'edges', 'nodes', 'page_info')
    count = sgqlc.types.Field(Int, graphql_name='count')
    edges = sgqlc.types.Field(sgqlc.types.list_of(
        'ItemEdge'), graphql_name='edges')
    nodes = sgqlc.types.Field(
        sgqlc.types.list_of('Item'), graphql_name='nodes')
    page_info = sgqlc.types.Field(sgqlc.types.non_null(
        'PageInfo'), graphql_name='pageInfo')

__field_names__ = ('count', 'edges', 'nodes', 'page_info') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

count = sgqlc.types.Field(Int, graphql_name='count') class-attribute instance-attribute

edges = sgqlc.types.Field(sgqlc.types.list_of('ItemEdge'), graphql_name='edges') class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.list_of('Item'), graphql_name='nodes') class-attribute instance-attribute

page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') class-attribute instance-attribute

ItemConnectionFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1034
1035
1036
1037
1038
class ItemConnectionFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'empty')
    id = sgqlc.types.Field(IntFilterB, graphql_name='id')
    empty = sgqlc.types.Field(BooleanFilterB, graphql_name='empty')

__field_names__ = ('id', 'empty') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

empty = sgqlc.types.Field(BooleanFilterB, graphql_name='empty') class-attribute instance-attribute

id = sgqlc.types.Field(IntFilterB, graphql_name='id') class-attribute instance-attribute

ItemCreateInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1041
1042
1043
1044
1045
class ItemCreateInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('type', 'id')
    type = sgqlc.types.Field(String, graphql_name='type')
    id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id')

__field_names__ = ('type', 'id') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') class-attribute instance-attribute

type = sgqlc.types.Field(String, graphql_name='type') class-attribute instance-attribute

ItemEdge

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2518
2519
2520
2521
2522
2523
class ItemEdge(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('cursor', 'node')
    cursor = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='cursor')
    node = sgqlc.types.Field('Item', graphql_name='node')

__field_names__ = ('cursor', 'node') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

cursor = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='cursor') class-attribute instance-attribute

node = sgqlc.types.Field('Item', graphql_name='node') class-attribute instance-attribute

ItemFilter

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
class ItemFilter(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'backend_document_hash', 'backend_document', 'publish_date', 'codex_pending', 'feed_document', 'feed_document_modified_at', 'is_published', 'depublished_at', 'program_set_id', 'title', 'title_without_number', 'group_id', 'episode_number',
                       'max_group_number', 'codex_last_published', 'external_ids', 'editorial_category_id', 'core_id', 'item_type', 'core_document', 'external_id', 'image_collection_id', 'show_id', 'first_publish_date', 'audio_binary_id', 'status', 'image', 'and_', 'or_', 'not_')
    id = sgqlc.types.Field(IntFilter, graphql_name='id')
    backend_document_hash = sgqlc.types.Field(
        'StringFilter', graphql_name='backendDocumentHash')
    backend_document = sgqlc.types.Field(
        'JSONFilter', graphql_name='backendDocument')
    publish_date = sgqlc.types.Field(
        DatetimeFilter, graphql_name='publishDate')
    codex_pending = sgqlc.types.Field(
        BooleanFilter, graphql_name='codexPending')
    feed_document = sgqlc.types.Field(
        'JSONFilter', graphql_name='feedDocument')
    feed_document_modified_at = sgqlc.types.Field(
        BigIntFilter, graphql_name='feedDocumentModifiedAt')
    is_published = sgqlc.types.Field(BooleanFilter, graphql_name='isPublished')
    depublished_at = sgqlc.types.Field(
        BigIntFilter, graphql_name='depublishedAt')
    program_set_id = sgqlc.types.Field(IntFilter, graphql_name='programSetId')
    title = sgqlc.types.Field('StringFilter', graphql_name='title')
    title_without_number = sgqlc.types.Field(
        'StringFilter', graphql_name='titleWithoutNumber')
    group_id = sgqlc.types.Field('StringFilter', graphql_name='groupId')
    episode_number = sgqlc.types.Field(IntFilter, graphql_name='episodeNumber')
    max_group_number = sgqlc.types.Field(
        IntFilter, graphql_name='maxGroupNumber')
    codex_last_published = sgqlc.types.Field(
        BigIntFilter, graphql_name='codexLastPublished')
    external_ids = sgqlc.types.Field(
        'StringListFilter', graphql_name='externalIds')
    editorial_category_id = sgqlc.types.Field(
        'StringFilter', graphql_name='editorialCategoryId')
    core_id = sgqlc.types.Field('StringFilter', graphql_name='coreId')
    item_type = sgqlc.types.Field('ItemTypeFilter', graphql_name='itemType')
    core_document = sgqlc.types.Field(
        'JSONFilter', graphql_name='coreDocument')
    external_id = sgqlc.types.Field('StringFilter', graphql_name='externalId')
    image_collection_id = sgqlc.types.Field(
        'StringFilter', graphql_name='imageCollectionId')
    show_id = sgqlc.types.Field('StringFilter', graphql_name='showId')
    first_publish_date = sgqlc.types.Field(
        DatetimeFilter, graphql_name='firstPublishDate')
    audio_binary_id = sgqlc.types.Field(
        'StringFilter', graphql_name='audioBinaryId')
    status = sgqlc.types.Field('StatusFilter', graphql_name='status')
    image = sgqlc.types.Field(ImageTypeFilter, graphql_name='image')
    and_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null('ItemFilter')), graphql_name='and')
    or_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null('ItemFilter')), graphql_name='or')
    not_ = sgqlc.types.Field('ItemFilter', graphql_name='not')

__field_names__ = ('id', 'backend_document_hash', 'backend_document', 'publish_date', 'codex_pending', 'feed_document', 'feed_document_modified_at', 'is_published', 'depublished_at', 'program_set_id', 'title', 'title_without_number', 'group_id', 'episode_number', 'max_group_number', 'codex_last_published', 'external_ids', 'editorial_category_id', 'core_id', 'item_type', 'core_document', 'external_id', 'image_collection_id', 'show_id', 'first_publish_date', 'audio_binary_id', 'status', 'image', 'and_', 'or_', 'not_') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ItemFilter')), graphql_name='and') class-attribute instance-attribute

audio_binary_id = sgqlc.types.Field('StringFilter', graphql_name='audioBinaryId') class-attribute instance-attribute

backend_document = sgqlc.types.Field('JSONFilter', graphql_name='backendDocument') class-attribute instance-attribute

backend_document_hash = sgqlc.types.Field('StringFilter', graphql_name='backendDocumentHash') class-attribute instance-attribute

codex_last_published = sgqlc.types.Field(BigIntFilter, graphql_name='codexLastPublished') class-attribute instance-attribute

codex_pending = sgqlc.types.Field(BooleanFilter, graphql_name='codexPending') class-attribute instance-attribute

core_document = sgqlc.types.Field('JSONFilter', graphql_name='coreDocument') class-attribute instance-attribute

core_id = sgqlc.types.Field('StringFilter', graphql_name='coreId') class-attribute instance-attribute

depublished_at = sgqlc.types.Field(BigIntFilter, graphql_name='depublishedAt') class-attribute instance-attribute

editorial_category_id = sgqlc.types.Field('StringFilter', graphql_name='editorialCategoryId') class-attribute instance-attribute

episode_number = sgqlc.types.Field(IntFilter, graphql_name='episodeNumber') class-attribute instance-attribute

external_id = sgqlc.types.Field('StringFilter', graphql_name='externalId') class-attribute instance-attribute

external_ids = sgqlc.types.Field('StringListFilter', graphql_name='externalIds') class-attribute instance-attribute

feed_document = sgqlc.types.Field('JSONFilter', graphql_name='feedDocument') class-attribute instance-attribute

feed_document_modified_at = sgqlc.types.Field(BigIntFilter, graphql_name='feedDocumentModifiedAt') class-attribute instance-attribute

first_publish_date = sgqlc.types.Field(DatetimeFilter, graphql_name='firstPublishDate') class-attribute instance-attribute

group_id = sgqlc.types.Field('StringFilter', graphql_name='groupId') class-attribute instance-attribute

id = sgqlc.types.Field(IntFilter, graphql_name='id') class-attribute instance-attribute

image = sgqlc.types.Field(ImageTypeFilter, graphql_name='image') class-attribute instance-attribute

image_collection_id = sgqlc.types.Field('StringFilter', graphql_name='imageCollectionId') class-attribute instance-attribute

is_published = sgqlc.types.Field(BooleanFilter, graphql_name='isPublished') class-attribute instance-attribute

item_type = sgqlc.types.Field('ItemTypeFilter', graphql_name='itemType') class-attribute instance-attribute

max_group_number = sgqlc.types.Field(IntFilter, graphql_name='maxGroupNumber') class-attribute instance-attribute

not_ = sgqlc.types.Field('ItemFilter', graphql_name='not') class-attribute instance-attribute

or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ItemFilter')), graphql_name='or') class-attribute instance-attribute

program_set_id = sgqlc.types.Field(IntFilter, graphql_name='programSetId') class-attribute instance-attribute

publish_date = sgqlc.types.Field(DatetimeFilter, graphql_name='publishDate') class-attribute instance-attribute

show_id = sgqlc.types.Field('StringFilter', graphql_name='showId') class-attribute instance-attribute

status = sgqlc.types.Field('StatusFilter', graphql_name='status') class-attribute instance-attribute

title = sgqlc.types.Field('StringFilter', graphql_name='title') class-attribute instance-attribute

title_without_number = sgqlc.types.Field('StringFilter', graphql_name='titleWithoutNumber') class-attribute instance-attribute

ItemFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1103
1104
1105
1106
class ItemFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('id',)
    id = sgqlc.types.Field(IntFilterB, graphql_name='id')

__field_names__ = ('id') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

id = sgqlc.types.Field(IntFilterB, graphql_name='id') class-attribute instance-attribute

ItemRecVariant

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
134
135
136
class ItemRecVariant(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('DETAIL_1', 'DETAIL_2', 'NOT_FOUND')

__choices__ = ('DETAIL_1', 'DETAIL_2', 'NOT_FOUND') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

ItemRelationFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1109
1110
1111
1112
class ItemRelationFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('id',)
    id = sgqlc.types.Field(IntFilterB, graphql_name='id')

__field_names__ = ('id') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

id = sgqlc.types.Field(IntFilterB, graphql_name='id') class-attribute instance-attribute

ItemSection

Bases: sgqlc.types.Type, Section

Source code in src/libaudiothek/audiothek_schema.py
4401
4402
4403
4404
class ItemSection(sgqlc.types.Type, Section):
    __schema__ = audiothek_schema
    __field_names__ = ('key',)
    key = sgqlc.types.Field(String, graphql_name='key')

__field_names__ = ('key') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

key = sgqlc.types.Field(String, graphql_name='key') class-attribute instance-attribute

ItemSortOrder

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
139
140
141
class ItemSortOrder(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('ID_ASC', 'ID_DESC')

__choices__ = ('ID_ASC', 'ID_DESC') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

ItemType

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
144
145
146
class ItemType(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('EPISODE', 'EVENT_LIVESTREAM', 'EXTRA', 'SECTION')

__choices__ = ('EPISODE', 'EVENT_LIVESTREAM', 'EXTRA', 'SECTION') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

ItemTypeFilter

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
class ItemTypeFilter(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from',
                       'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to')
    is_null = sgqlc.types.Field(Boolean, graphql_name='isNull')
    equal_to = sgqlc.types.Field(ItemType, graphql_name='equalTo')
    not_equal_to = sgqlc.types.Field(ItemType, graphql_name='notEqualTo')
    distinct_from = sgqlc.types.Field(ItemType, graphql_name='distinctFrom')
    not_distinct_from = sgqlc.types.Field(
        ItemType, graphql_name='notDistinctFrom')
    in_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null(ItemType)), graphql_name='in')
    not_in = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null(ItemType)), graphql_name='notIn')
    less_than = sgqlc.types.Field(ItemType, graphql_name='lessThan')
    less_than_or_equal_to = sgqlc.types.Field(
        ItemType, graphql_name='lessThanOrEqualTo')
    greater_than = sgqlc.types.Field(ItemType, graphql_name='greaterThan')
    greater_than_or_equal_to = sgqlc.types.Field(
        ItemType, graphql_name='greaterThanOrEqualTo')

__field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

distinct_from = sgqlc.types.Field(ItemType, graphql_name='distinctFrom') class-attribute instance-attribute

equal_to = sgqlc.types.Field(ItemType, graphql_name='equalTo') class-attribute instance-attribute

greater_than = sgqlc.types.Field(ItemType, graphql_name='greaterThan') class-attribute instance-attribute

greater_than_or_equal_to = sgqlc.types.Field(ItemType, graphql_name='greaterThanOrEqualTo') class-attribute instance-attribute

in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ItemType)), graphql_name='in') class-attribute instance-attribute

is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') class-attribute instance-attribute

less_than = sgqlc.types.Field(ItemType, graphql_name='lessThan') class-attribute instance-attribute

less_than_or_equal_to = sgqlc.types.Field(ItemType, graphql_name='lessThanOrEqualTo') class-attribute instance-attribute

not_distinct_from = sgqlc.types.Field(ItemType, graphql_name='notDistinctFrom') class-attribute instance-attribute

not_equal_to = sgqlc.types.Field(ItemType, graphql_name='notEqualTo') class-attribute instance-attribute

not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ItemType)), graphql_name='notIn') class-attribute instance-attribute

ItemsConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
class ItemsConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('nodes', 'edges', 'page_info', 'total_count')
    nodes = sgqlc.types.Field(sgqlc.types.non_null(
        sgqlc.types.list_of(sgqlc.types.non_null('Item'))), graphql_name='nodes')
    edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(
        sgqlc.types.non_null('ItemsEdge'))), graphql_name='edges')
    page_info = sgqlc.types.Field(sgqlc.types.non_null(
        'PageInfo'), graphql_name='pageInfo')
    total_count = sgqlc.types.Field(
        sgqlc.types.non_null(Int), graphql_name='totalCount')

__field_names__ = ('nodes', 'edges', 'page_info', 'total_count') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ItemsEdge'))), graphql_name='edges') class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Item'))), graphql_name='nodes') class-attribute instance-attribute

page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') class-attribute instance-attribute

total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') class-attribute instance-attribute

ItemsEdge

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2539
2540
2541
2542
2543
class ItemsEdge(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('cursor', 'node')
    cursor = sgqlc.types.Field(Cursor, graphql_name='cursor')
    node = sgqlc.types.Field(sgqlc.types.non_null('Item'), graphql_name='node')

__field_names__ = ('cursor', 'node') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') class-attribute instance-attribute

node = sgqlc.types.Field(sgqlc.types.non_null('Item'), graphql_name='node') class-attribute instance-attribute

ItemsOrderBy

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
149
150
151
152
class ItemsOrderBy(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('AUDIO_BINARY_ID_ASC', 'AUDIO_BINARY_ID_DESC', 'BACKEND_DOCUMENT_ASC', 'BACKEND_DOCUMENT_DESC', 'BACKEND_DOCUMENT_HASH_ASC', 'BACKEND_DOCUMENT_HASH_DESC', 'CODEX_LAST_PUBLISHED_ASC', 'CODEX_LAST_PUBLISHED_DESC', 'CODEX_PENDING_ASC', 'CODEX_PENDING_DESC', 'CORE_DOCUMENT_ASC', 'CORE_DOCUMENT_DESC', 'CORE_ID_ASC', 'CORE_ID_DESC', 'DEPUBLISHED_AT_ASC', 'DEPUBLISHED_AT_DESC', 'EDITORIAL_CATEGORY_ID_ASC', 'EDITORIAL_CATEGORY_ID_DESC', 'EPISODE_NUMBER_ASC', 'EPISODE_NUMBER_DESC', 'EXTERNAL_IDS_ASC', 'EXTERNAL_IDS_DESC', 'EXTERNAL_ID_ASC', 'EXTERNAL_ID_DESC', 'FEED_DOCUMENT_ASC', 'FEED_DOCUMENT_DESC', 'FEED_DOCUMENT_MODIFIED_AT_ASC',
                   'FEED_DOCUMENT_MODIFIED_AT_DESC', 'FIRST_PUBLISH_DATE_ASC', 'FIRST_PUBLISH_DATE_DESC', 'GROUP_ID_ASC', 'GROUP_ID_DESC', 'ID_ASC', 'ID_DESC', 'IMAGE_ASC', 'IMAGE_COLLECTION_ID_ASC', 'IMAGE_COLLECTION_ID_DESC', 'IMAGE_DESC', 'IS_PUBLISHED_ASC', 'IS_PUBLISHED_DESC', 'ITEM_TYPE_ASC', 'ITEM_TYPE_DESC', 'MAX_GROUP_NUMBER_ASC', 'MAX_GROUP_NUMBER_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'PROGRAM_SET_ID_ASC', 'PROGRAM_SET_ID_DESC', 'PUBLISH_DATE_ASC', 'PUBLISH_DATE_DESC', 'SHOW_ID_ASC', 'SHOW_ID_DESC', 'STATUS_ASC', 'STATUS_DESC', 'TITLE_ASC', 'TITLE_DESC', 'TITLE_WITHOUT_NUMBER_ASC', 'TITLE_WITHOUT_NUMBER_DESC')

__choices__ = ('AUDIO_BINARY_ID_ASC', 'AUDIO_BINARY_ID_DESC', 'BACKEND_DOCUMENT_ASC', 'BACKEND_DOCUMENT_DESC', 'BACKEND_DOCUMENT_HASH_ASC', 'BACKEND_DOCUMENT_HASH_DESC', 'CODEX_LAST_PUBLISHED_ASC', 'CODEX_LAST_PUBLISHED_DESC', 'CODEX_PENDING_ASC', 'CODEX_PENDING_DESC', 'CORE_DOCUMENT_ASC', 'CORE_DOCUMENT_DESC', 'CORE_ID_ASC', 'CORE_ID_DESC', 'DEPUBLISHED_AT_ASC', 'DEPUBLISHED_AT_DESC', 'EDITORIAL_CATEGORY_ID_ASC', 'EDITORIAL_CATEGORY_ID_DESC', 'EPISODE_NUMBER_ASC', 'EPISODE_NUMBER_DESC', 'EXTERNAL_IDS_ASC', 'EXTERNAL_IDS_DESC', 'EXTERNAL_ID_ASC', 'EXTERNAL_ID_DESC', 'FEED_DOCUMENT_ASC', 'FEED_DOCUMENT_DESC', 'FEED_DOCUMENT_MODIFIED_AT_ASC', 'FEED_DOCUMENT_MODIFIED_AT_DESC', 'FIRST_PUBLISH_DATE_ASC', 'FIRST_PUBLISH_DATE_DESC', 'GROUP_ID_ASC', 'GROUP_ID_DESC', 'ID_ASC', 'ID_DESC', 'IMAGE_ASC', 'IMAGE_COLLECTION_ID_ASC', 'IMAGE_COLLECTION_ID_DESC', 'IMAGE_DESC', 'IS_PUBLISHED_ASC', 'IS_PUBLISHED_DESC', 'ITEM_TYPE_ASC', 'ITEM_TYPE_DESC', 'MAX_GROUP_NUMBER_ASC', 'MAX_GROUP_NUMBER_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'PROGRAM_SET_ID_ASC', 'PROGRAM_SET_ID_DESC', 'PUBLISH_DATE_ASC', 'PUBLISH_DATE_DESC', 'SHOW_ID_ASC', 'SHOW_ID_DESC', 'STATUS_ASC', 'STATUS_DESC', 'TITLE_ASC', 'TITLE_DESC', 'TITLE_WITHOUT_NUMBER_ASC', 'TITLE_WITHOUT_NUMBER_DESC') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

ItemsSearchConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
2546
2547
2548
2549
2550
2551
2552
2553
class ItemsSearchConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('page_info', 'total_count', 'nodes')
    page_info = sgqlc.types.Field('PageInfo', graphql_name='pageInfo')
    total_count = sgqlc.types.Field(
        sgqlc.types.non_null(Int), graphql_name='totalCount')
    nodes = sgqlc.types.Field(sgqlc.types.non_null(
        sgqlc.types.list_of(sgqlc.types.non_null('Item'))), graphql_name='nodes')

__field_names__ = ('page_info', 'total_count', 'nodes') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Item'))), graphql_name='nodes') class-attribute instance-attribute

page_info = sgqlc.types.Field('PageInfo', graphql_name='pageInfo') class-attribute instance-attribute

total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') class-attribute instance-attribute

JSON

Bases: sgqlc.types.Scalar

Source code in src/libaudiothek/audiothek_schema.py
155
156
class JSON(sgqlc.types.Scalar):
    __schema__ = audiothek_schema

__schema__ = audiothek_schema class-attribute instance-attribute

JSONFilter

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
class JSONFilter(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to',
                       'greater_than', 'greater_than_or_equal_to', 'contains', 'contains_key', 'contains_all_keys', 'contains_any_keys', 'contained_by')
    is_null = sgqlc.types.Field(Boolean, graphql_name='isNull')
    equal_to = sgqlc.types.Field(JSON, graphql_name='equalTo')
    not_equal_to = sgqlc.types.Field(JSON, graphql_name='notEqualTo')
    distinct_from = sgqlc.types.Field(JSON, graphql_name='distinctFrom')
    not_distinct_from = sgqlc.types.Field(JSON, graphql_name='notDistinctFrom')
    in_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null(JSON)), graphql_name='in')
    not_in = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null(JSON)), graphql_name='notIn')
    less_than = sgqlc.types.Field(JSON, graphql_name='lessThan')
    less_than_or_equal_to = sgqlc.types.Field(
        JSON, graphql_name='lessThanOrEqualTo')
    greater_than = sgqlc.types.Field(JSON, graphql_name='greaterThan')
    greater_than_or_equal_to = sgqlc.types.Field(
        JSON, graphql_name='greaterThanOrEqualTo')
    contains = sgqlc.types.Field(JSON, graphql_name='contains')
    contains_key = sgqlc.types.Field(String, graphql_name='containsKey')
    contains_all_keys = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null(String)), graphql_name='containsAllKeys')
    contains_any_keys = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null(String)), graphql_name='containsAnyKeys')
    contained_by = sgqlc.types.Field(JSON, graphql_name='containedBy')

__field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to', 'contains', 'contains_key', 'contains_all_keys', 'contains_any_keys', 'contained_by') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

contained_by = sgqlc.types.Field(JSON, graphql_name='containedBy') class-attribute instance-attribute

contains = sgqlc.types.Field(JSON, graphql_name='contains') class-attribute instance-attribute

contains_all_keys = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='containsAllKeys') class-attribute instance-attribute

contains_any_keys = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='containsAnyKeys') class-attribute instance-attribute

contains_key = sgqlc.types.Field(String, graphql_name='containsKey') class-attribute instance-attribute

distinct_from = sgqlc.types.Field(JSON, graphql_name='distinctFrom') class-attribute instance-attribute

equal_to = sgqlc.types.Field(JSON, graphql_name='equalTo') class-attribute instance-attribute

greater_than = sgqlc.types.Field(JSON, graphql_name='greaterThan') class-attribute instance-attribute

greater_than_or_equal_to = sgqlc.types.Field(JSON, graphql_name='greaterThanOrEqualTo') class-attribute instance-attribute

in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(JSON)), graphql_name='in') class-attribute instance-attribute

is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') class-attribute instance-attribute

less_than = sgqlc.types.Field(JSON, graphql_name='lessThan') class-attribute instance-attribute

less_than_or_equal_to = sgqlc.types.Field(JSON, graphql_name='lessThanOrEqualTo') class-attribute instance-attribute

not_distinct_from = sgqlc.types.Field(JSON, graphql_name='notDistinctFrom') class-attribute instance-attribute

not_equal_to = sgqlc.types.Field(JSON, graphql_name='notEqualTo') class-attribute instance-attribute

not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(JSON)), graphql_name='notIn') class-attribute instance-attribute

Migration

Bases: sgqlc.types.Type, Node

Source code in src/libaudiothek/audiothek_schema.py
4407
4408
4409
4410
4411
4412
4413
class Migration(sgqlc.types.Type, Node):
    __schema__ = audiothek_schema
    __field_names__ = ('row_id', 'name', 'hash', 'executed_at')
    row_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='rowId')
    name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name')
    hash = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='hash')
    executed_at = sgqlc.types.Field(Datetime, graphql_name='executedAt')

__field_names__ = ('row_id', 'name', 'hash', 'executed_at') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

executed_at = sgqlc.types.Field(Datetime, graphql_name='executedAt') class-attribute instance-attribute

hash = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='hash') class-attribute instance-attribute

name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') class-attribute instance-attribute

row_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='rowId') class-attribute instance-attribute

MigrationCondition

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1165
1166
1167
1168
1169
1170
1171
class MigrationCondition(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'name', 'hash', 'executed_at')
    id = sgqlc.types.Field(Int, graphql_name='id')
    name = sgqlc.types.Field(String, graphql_name='name')
    hash = sgqlc.types.Field(String, graphql_name='hash')
    executed_at = sgqlc.types.Field(Datetime, graphql_name='executedAt')

__field_names__ = ('id', 'name', 'hash', 'executed_at') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

executed_at = sgqlc.types.Field(Datetime, graphql_name='executedAt') class-attribute instance-attribute

hash = sgqlc.types.Field(String, graphql_name='hash') class-attribute instance-attribute

id = sgqlc.types.Field(Int, graphql_name='id') class-attribute instance-attribute

name = sgqlc.types.Field(String, graphql_name='name') class-attribute instance-attribute

MigrationFilter

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
class MigrationFilter(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'name', 'hash', 'executed_at',
                       'and_', 'or_', 'not_')
    id = sgqlc.types.Field(IntFilter, graphql_name='id')
    name = sgqlc.types.Field('StringFilter', graphql_name='name')
    hash = sgqlc.types.Field('StringFilter', graphql_name='hash')
    executed_at = sgqlc.types.Field(DatetimeFilter, graphql_name='executedAt')
    and_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null('MigrationFilter')), graphql_name='and')
    or_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null('MigrationFilter')), graphql_name='or')
    not_ = sgqlc.types.Field('MigrationFilter', graphql_name='not')

__field_names__ = ('id', 'name', 'hash', 'executed_at', 'and_', 'or_', 'not_') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('MigrationFilter')), graphql_name='and') class-attribute instance-attribute

executed_at = sgqlc.types.Field(DatetimeFilter, graphql_name='executedAt') class-attribute instance-attribute

hash = sgqlc.types.Field('StringFilter', graphql_name='hash') class-attribute instance-attribute

id = sgqlc.types.Field(IntFilter, graphql_name='id') class-attribute instance-attribute

name = sgqlc.types.Field('StringFilter', graphql_name='name') class-attribute instance-attribute

not_ = sgqlc.types.Field('MigrationFilter', graphql_name='not') class-attribute instance-attribute

or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('MigrationFilter')), graphql_name='or') class-attribute instance-attribute

MigrationsConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
class MigrationsConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('nodes', 'edges', 'page_info', 'total_count')
    nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(
        sgqlc.types.non_null('Migration'))), graphql_name='nodes')
    edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(
        sgqlc.types.non_null('MigrationsEdge'))), graphql_name='edges')
    page_info = sgqlc.types.Field(sgqlc.types.non_null(
        'PageInfo'), graphql_name='pageInfo')
    total_count = sgqlc.types.Field(
        sgqlc.types.non_null(Int), graphql_name='totalCount')

__field_names__ = ('nodes', 'edges', 'page_info', 'total_count') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('MigrationsEdge'))), graphql_name='edges') class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Migration'))), graphql_name='nodes') class-attribute instance-attribute

page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') class-attribute instance-attribute

total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') class-attribute instance-attribute

MigrationsEdge

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2569
2570
2571
2572
2573
2574
class MigrationsEdge(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('cursor', 'node')
    cursor = sgqlc.types.Field(Cursor, graphql_name='cursor')
    node = sgqlc.types.Field(sgqlc.types.non_null(
        'Migration'), graphql_name='node')

__field_names__ = ('cursor', 'node') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') class-attribute instance-attribute

node = sgqlc.types.Field(sgqlc.types.non_null('Migration'), graphql_name='node') class-attribute instance-attribute

MigrationsOrderBy

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
159
160
161
162
class MigrationsOrderBy(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('EXECUTED_AT_ASC', 'EXECUTED_AT_DESC', 'HASH_ASC', 'HASH_DESC', 'ID_ASC',
                   'ID_DESC', 'NAME_ASC', 'NAME_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC')

__choices__ = ('EXECUTED_AT_ASC', 'EXECUTED_AT_DESC', 'HASH_ASC', 'HASH_DESC', 'ID_ASC', 'ID_DESC', 'NAME_ASC', 'NAME_DESC', 'NATURAL', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

Mutation

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
class Mutation(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('delete_history_entry_by_item', 'update_program_set_subscription_by_program_set', 'sync_user_data', 'update_bookmark', 'create_bookmark_list', 'update_bookmark_list', 'add_entry_to_bookmark_list', 'remove_entry_from_bookmark_list', 'remove_all_entries_from_bookmark_list', 'create_end_user', 'upsert_end_user', 'update_end_user', 'create_history_entry', 'upsert_history_entry', 'update_history_entry', 'create_playlist', 'update_playlist', 'add_entry_to_playlist',
                       'remove_entry_from_playlist', 'remove_all_entries_from_playlist', 'update_program_set_subscription', 'create_property', 'update_property', 'create_queue', 'update_queue', 'add_entry_to_queue', 'remove_entry_from_queue', 'remove_all_entries_from_queue', 'create_subscription_list', 'update_subscription_list', 'add_program_set_to_subscription_list', 'remove_program_set_from_subscription_list', 'remove_all_program_sets_from_subscription_list', 'delete_history_entry', 'delete_playlist')
    delete_history_entry_by_item = sgqlc.types.Field(DeletePayload, graphql_name='deleteHistoryEntryByItem', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(DeleteHistoryEntryByItemInput,
         graphql_name='input', default=None)),
    ))
    )
    update_program_set_subscription_by_program_set = sgqlc.types.Field('ProgramSetSubscriptionPayload', graphql_name='updateProgramSetSubscriptionByProgramSet', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(ProgramSetSubscriptionUpdateByProgramSetIdInput,
         graphql_name='input', default=None)),
    ))
    )
    sync_user_data = sgqlc.types.Field(EndUserPayload, graphql_name='syncUserData', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(EndUserSyncInput, graphql_name='input', default=None)),
    ))
    )
    update_bookmark = sgqlc.types.Field(BookmarkPayload, graphql_name='updateBookmark', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(sgqlc.types.non_null(
            BookmarkUpdateInput), graphql_name='input', default=None)),
    ))
    )
    create_bookmark_list = sgqlc.types.Field(BookmarkListPayload, graphql_name='createBookmarkList', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(sgqlc.types.non_null(
            BookmarkListCreateInput), graphql_name='input', default=None)),
    ))
    )
    update_bookmark_list = sgqlc.types.Field(BookmarkListPayload, graphql_name='updateBookmarkList', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(sgqlc.types.non_null(
            BookmarkListUpdateInput), graphql_name='input', default=None)),
    ))
    )
    add_entry_to_bookmark_list = sgqlc.types.Field(BookmarkListPayload, graphql_name='addEntryToBookmarkList', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(sgqlc.types.non_null(
            BookmarkListEntryListInput), graphql_name='input', default=None)),
    ))
    )
    remove_entry_from_bookmark_list = sgqlc.types.Field(BookmarkListPayload, graphql_name='removeEntryFromBookmarkList', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(sgqlc.types.non_null(
            BookmarkListEntryListInput), graphql_name='input', default=None)),
    ))
    )
    remove_all_entries_from_bookmark_list = sgqlc.types.Field(BookmarkListPayload, graphql_name='removeAllEntriesFromBookmarkList', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(sgqlc.types.non_null(
            BookmarkListRemoveAllListInput), graphql_name='input', default=None)),
    ))
    )
    create_end_user = sgqlc.types.Field(EndUserPayload, graphql_name='createEndUser', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(sgqlc.types.non_null(
            EndUserCreateInput), graphql_name='input', default=None)),
    ))
    )
    upsert_end_user = sgqlc.types.Field(EndUserPayload, graphql_name='upsertEndUser', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(sgqlc.types.non_null(
            EndUserCreateInput), graphql_name='input', default=None)),
    ))
    )
    update_end_user = sgqlc.types.Field(EndUserPayload, graphql_name='updateEndUser', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(sgqlc.types.non_null(
            EndUserUpdateInput), graphql_name='input', default=None)),
    ))
    )
    create_history_entry = sgqlc.types.Field(HistoryEntryPayload, graphql_name='createHistoryEntry', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(sgqlc.types.non_null(
            HistoryEntryCreateInput), graphql_name='input', default=None)),
    ))
    )
    upsert_history_entry = sgqlc.types.Field(HistoryEntryPayload, graphql_name='upsertHistoryEntry', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(sgqlc.types.non_null(
            HistoryEntryCreateInput), graphql_name='input', default=None)),
    ))
    )
    update_history_entry = sgqlc.types.Field(HistoryEntryPayload, graphql_name='updateHistoryEntry', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(sgqlc.types.non_null(
            HistoryEntryUpdateInput), graphql_name='input', default=None)),
    ))
    )
    create_playlist = sgqlc.types.Field('PlaylistPayload', graphql_name='createPlaylist', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(sgqlc.types.non_null(
            PlaylistCreateInput), graphql_name='input', default=None)),
    ))
    )
    update_playlist = sgqlc.types.Field('PlaylistPayload', graphql_name='updatePlaylist', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(sgqlc.types.non_null(
            PlaylistUpdateInput), graphql_name='input', default=None)),
    ))
    )
    add_entry_to_playlist = sgqlc.types.Field('PlaylistPayload', graphql_name='addEntryToPlaylist', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(sgqlc.types.non_null(
            PlaylistEntryListInput), graphql_name='input', default=None)),
    ))
    )
    remove_entry_from_playlist = sgqlc.types.Field('PlaylistPayload', graphql_name='removeEntryFromPlaylist', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(sgqlc.types.non_null(
            PlaylistEntryListInput), graphql_name='input', default=None)),
    ))
    )
    remove_all_entries_from_playlist = sgqlc.types.Field('PlaylistPayload', graphql_name='removeAllEntriesFromPlaylist', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(sgqlc.types.non_null(
            PlaylistRemoveAllListInput), graphql_name='input', default=None)),
    ))
    )
    update_program_set_subscription = sgqlc.types.Field('ProgramSetSubscriptionPayload', graphql_name='updateProgramSetSubscription', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(sgqlc.types.non_null(
            ProgramSetSubscriptionUpdateInput), graphql_name='input', default=None)),
    ))
    )
    create_property = sgqlc.types.Field('PropertyPayload', graphql_name='createProperty', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(sgqlc.types.non_null(
            PropertyCreateInput), graphql_name='input', default=None)),
    ))
    )
    update_property = sgqlc.types.Field('PropertyPayload', graphql_name='updateProperty', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(sgqlc.types.non_null(
            PropertyUpdateInput), graphql_name='input', default=None)),
    ))
    )
    create_queue = sgqlc.types.Field('QueuePayload', graphql_name='createQueue', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(sgqlc.types.non_null(
            QueueCreateInput), graphql_name='input', default=None)),
    ))
    )
    update_queue = sgqlc.types.Field('QueuePayload', graphql_name='updateQueue', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(sgqlc.types.non_null(
            QueueUpdateInput), graphql_name='input', default=None)),
    ))
    )
    add_entry_to_queue = sgqlc.types.Field('QueuePayload', graphql_name='addEntryToQueue', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(sgqlc.types.non_null(
            QueueEntryListInput), graphql_name='input', default=None)),
    ))
    )
    remove_entry_from_queue = sgqlc.types.Field('QueuePayload', graphql_name='removeEntryFromQueue', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(sgqlc.types.non_null(
            QueueEntryListInput), graphql_name='input', default=None)),
    ))
    )
    remove_all_entries_from_queue = sgqlc.types.Field('QueuePayload', graphql_name='removeAllEntriesFromQueue', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(sgqlc.types.non_null(
            QueueRemoveAllListInput), graphql_name='input', default=None)),
    ))
    )
    create_subscription_list = sgqlc.types.Field('SubscriptionListPayload', graphql_name='createSubscriptionList', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(sgqlc.types.non_null(
            SubscriptionListCreateInput), graphql_name='input', default=None)),
    ))
    )
    update_subscription_list = sgqlc.types.Field('SubscriptionListPayload', graphql_name='updateSubscriptionList', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(sgqlc.types.non_null(
            SubscriptionListUpdateInput), graphql_name='input', default=None)),
    ))
    )
    add_program_set_to_subscription_list = sgqlc.types.Field('SubscriptionListPayload', graphql_name='addProgramSetToSubscriptionList', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(sgqlc.types.non_null(
            SubscriptionListProgramSetListInput), graphql_name='input', default=None)),
    ))
    )
    remove_program_set_from_subscription_list = sgqlc.types.Field('SubscriptionListPayload', graphql_name='removeProgramSetFromSubscriptionList', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(sgqlc.types.non_null(
            SubscriptionListProgramSetListInput), graphql_name='input', default=None)),
    ))
    )
    remove_all_program_sets_from_subscription_list = sgqlc.types.Field('SubscriptionListPayload', graphql_name='removeAllProgramSetsFromSubscriptionList', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(sgqlc.types.non_null(
            SubscriptionListRemoveAllListInput), graphql_name='input', default=None)),
    ))
    )
    delete_history_entry = sgqlc.types.Field(DeletePayload, graphql_name='deleteHistoryEntry', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(sgqlc.types.non_null(
            DeleteInput), graphql_name='input', default=None)),
    ))
    )
    delete_playlist = sgqlc.types.Field(DeletePayload, graphql_name='deletePlaylist', args=sgqlc.types.ArgDict((
        ('input', sgqlc.types.Arg(sgqlc.types.non_null(
            DeleteInput), graphql_name='input', default=None)),
    ))
    )

__field_names__ = ('delete_history_entry_by_item', 'update_program_set_subscription_by_program_set', 'sync_user_data', 'update_bookmark', 'create_bookmark_list', 'update_bookmark_list', 'add_entry_to_bookmark_list', 'remove_entry_from_bookmark_list', 'remove_all_entries_from_bookmark_list', 'create_end_user', 'upsert_end_user', 'update_end_user', 'create_history_entry', 'upsert_history_entry', 'update_history_entry', 'create_playlist', 'update_playlist', 'add_entry_to_playlist', 'remove_entry_from_playlist', 'remove_all_entries_from_playlist', 'update_program_set_subscription', 'create_property', 'update_property', 'create_queue', 'update_queue', 'add_entry_to_queue', 'remove_entry_from_queue', 'remove_all_entries_from_queue', 'create_subscription_list', 'update_subscription_list', 'add_program_set_to_subscription_list', 'remove_program_set_from_subscription_list', 'remove_all_program_sets_from_subscription_list', 'delete_history_entry', 'delete_playlist') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

add_entry_to_bookmark_list = sgqlc.types.Field(BookmarkListPayload, graphql_name='addEntryToBookmarkList', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(sgqlc.types.non_null(BookmarkListEntryListInput), graphql_name='input', default=None))))) class-attribute instance-attribute

add_entry_to_playlist = sgqlc.types.Field('PlaylistPayload', graphql_name='addEntryToPlaylist', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(sgqlc.types.non_null(PlaylistEntryListInput), graphql_name='input', default=None))))) class-attribute instance-attribute

add_entry_to_queue = sgqlc.types.Field('QueuePayload', graphql_name='addEntryToQueue', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(sgqlc.types.non_null(QueueEntryListInput), graphql_name='input', default=None))))) class-attribute instance-attribute

add_program_set_to_subscription_list = sgqlc.types.Field('SubscriptionListPayload', graphql_name='addProgramSetToSubscriptionList', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(sgqlc.types.non_null(SubscriptionListProgramSetListInput), graphql_name='input', default=None))))) class-attribute instance-attribute

create_bookmark_list = sgqlc.types.Field(BookmarkListPayload, graphql_name='createBookmarkList', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(sgqlc.types.non_null(BookmarkListCreateInput), graphql_name='input', default=None))))) class-attribute instance-attribute

create_end_user = sgqlc.types.Field(EndUserPayload, graphql_name='createEndUser', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(sgqlc.types.non_null(EndUserCreateInput), graphql_name='input', default=None))))) class-attribute instance-attribute

create_history_entry = sgqlc.types.Field(HistoryEntryPayload, graphql_name='createHistoryEntry', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(sgqlc.types.non_null(HistoryEntryCreateInput), graphql_name='input', default=None))))) class-attribute instance-attribute

create_playlist = sgqlc.types.Field('PlaylistPayload', graphql_name='createPlaylist', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(sgqlc.types.non_null(PlaylistCreateInput), graphql_name='input', default=None))))) class-attribute instance-attribute

create_property = sgqlc.types.Field('PropertyPayload', graphql_name='createProperty', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(sgqlc.types.non_null(PropertyCreateInput), graphql_name='input', default=None))))) class-attribute instance-attribute

create_queue = sgqlc.types.Field('QueuePayload', graphql_name='createQueue', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(sgqlc.types.non_null(QueueCreateInput), graphql_name='input', default=None))))) class-attribute instance-attribute

create_subscription_list = sgqlc.types.Field('SubscriptionListPayload', graphql_name='createSubscriptionList', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(sgqlc.types.non_null(SubscriptionListCreateInput), graphql_name='input', default=None))))) class-attribute instance-attribute

delete_history_entry = sgqlc.types.Field(DeletePayload, graphql_name='deleteHistoryEntry', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteInput), graphql_name='input', default=None))))) class-attribute instance-attribute

delete_history_entry_by_item = sgqlc.types.Field(DeletePayload, graphql_name='deleteHistoryEntryByItem', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(DeleteHistoryEntryByItemInput, graphql_name='input', default=None))))) class-attribute instance-attribute

delete_playlist = sgqlc.types.Field(DeletePayload, graphql_name='deletePlaylist', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteInput), graphql_name='input', default=None))))) class-attribute instance-attribute

remove_all_entries_from_bookmark_list = sgqlc.types.Field(BookmarkListPayload, graphql_name='removeAllEntriesFromBookmarkList', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(sgqlc.types.non_null(BookmarkListRemoveAllListInput), graphql_name='input', default=None))))) class-attribute instance-attribute

remove_all_entries_from_playlist = sgqlc.types.Field('PlaylistPayload', graphql_name='removeAllEntriesFromPlaylist', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(sgqlc.types.non_null(PlaylistRemoveAllListInput), graphql_name='input', default=None))))) class-attribute instance-attribute

remove_all_entries_from_queue = sgqlc.types.Field('QueuePayload', graphql_name='removeAllEntriesFromQueue', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(sgqlc.types.non_null(QueueRemoveAllListInput), graphql_name='input', default=None))))) class-attribute instance-attribute

remove_all_program_sets_from_subscription_list = sgqlc.types.Field('SubscriptionListPayload', graphql_name='removeAllProgramSetsFromSubscriptionList', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(sgqlc.types.non_null(SubscriptionListRemoveAllListInput), graphql_name='input', default=None))))) class-attribute instance-attribute

remove_entry_from_bookmark_list = sgqlc.types.Field(BookmarkListPayload, graphql_name='removeEntryFromBookmarkList', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(sgqlc.types.non_null(BookmarkListEntryListInput), graphql_name='input', default=None))))) class-attribute instance-attribute

remove_entry_from_playlist = sgqlc.types.Field('PlaylistPayload', graphql_name='removeEntryFromPlaylist', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(sgqlc.types.non_null(PlaylistEntryListInput), graphql_name='input', default=None))))) class-attribute instance-attribute

remove_entry_from_queue = sgqlc.types.Field('QueuePayload', graphql_name='removeEntryFromQueue', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(sgqlc.types.non_null(QueueEntryListInput), graphql_name='input', default=None))))) class-attribute instance-attribute

remove_program_set_from_subscription_list = sgqlc.types.Field('SubscriptionListPayload', graphql_name='removeProgramSetFromSubscriptionList', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(sgqlc.types.non_null(SubscriptionListProgramSetListInput), graphql_name='input', default=None))))) class-attribute instance-attribute

sync_user_data = sgqlc.types.Field(EndUserPayload, graphql_name='syncUserData', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(EndUserSyncInput, graphql_name='input', default=None))))) class-attribute instance-attribute

update_bookmark = sgqlc.types.Field(BookmarkPayload, graphql_name='updateBookmark', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(sgqlc.types.non_null(BookmarkUpdateInput), graphql_name='input', default=None))))) class-attribute instance-attribute

update_bookmark_list = sgqlc.types.Field(BookmarkListPayload, graphql_name='updateBookmarkList', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(sgqlc.types.non_null(BookmarkListUpdateInput), graphql_name='input', default=None))))) class-attribute instance-attribute

update_end_user = sgqlc.types.Field(EndUserPayload, graphql_name='updateEndUser', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(sgqlc.types.non_null(EndUserUpdateInput), graphql_name='input', default=None))))) class-attribute instance-attribute

update_history_entry = sgqlc.types.Field(HistoryEntryPayload, graphql_name='updateHistoryEntry', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(sgqlc.types.non_null(HistoryEntryUpdateInput), graphql_name='input', default=None))))) class-attribute instance-attribute

update_playlist = sgqlc.types.Field('PlaylistPayload', graphql_name='updatePlaylist', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(sgqlc.types.non_null(PlaylistUpdateInput), graphql_name='input', default=None))))) class-attribute instance-attribute

update_program_set_subscription = sgqlc.types.Field('ProgramSetSubscriptionPayload', graphql_name='updateProgramSetSubscription', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(sgqlc.types.non_null(ProgramSetSubscriptionUpdateInput), graphql_name='input', default=None))))) class-attribute instance-attribute

update_program_set_subscription_by_program_set = sgqlc.types.Field('ProgramSetSubscriptionPayload', graphql_name='updateProgramSetSubscriptionByProgramSet', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(ProgramSetSubscriptionUpdateByProgramSetIdInput, graphql_name='input', default=None))))) class-attribute instance-attribute

update_property = sgqlc.types.Field('PropertyPayload', graphql_name='updateProperty', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(sgqlc.types.non_null(PropertyUpdateInput), graphql_name='input', default=None))))) class-attribute instance-attribute

update_queue = sgqlc.types.Field('QueuePayload', graphql_name='updateQueue', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(sgqlc.types.non_null(QueueUpdateInput), graphql_name='input', default=None))))) class-attribute instance-attribute

update_subscription_list = sgqlc.types.Field('SubscriptionListPayload', graphql_name='updateSubscriptionList', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(sgqlc.types.non_null(SubscriptionListUpdateInput), graphql_name='input', default=None))))) class-attribute instance-attribute

upsert_end_user = sgqlc.types.Field(EndUserPayload, graphql_name='upsertEndUser', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(sgqlc.types.non_null(EndUserCreateInput), graphql_name='input', default=None))))) class-attribute instance-attribute

upsert_history_entry = sgqlc.types.Field(HistoryEntryPayload, graphql_name='upsertHistoryEntry', args=sgqlc.types.ArgDict((('input', sgqlc.types.Arg(sgqlc.types.non_null(HistoryEntryCreateInput), graphql_name='input', default=None))))) class-attribute instance-attribute

Node

Bases: sgqlc.types.Interface

Source code in src/libaudiothek/audiothek_schema.py
2757
2758
2759
2760
2761
class Node(sgqlc.types.Interface):
    __schema__ = audiothek_schema
    __field_names__ = ('node_id',)
    node_id = sgqlc.types.Field(
        sgqlc.types.non_null(ID), graphql_name='nodeId')

__field_names__ = ('node_id') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

node_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='nodeId') class-attribute instance-attribute

Organization

Bases: sgqlc.types.Type, Node

Source code in src/libaudiothek/audiothek_schema.py
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
class Organization(sgqlc.types.Type, Node):
    __schema__ = audiothek_schema
    __field_names__ = ('row_id', 'name', 'core_id', 'core_document', 'order', 'title', 'publication_services_by_organization_name',
                       'images', 'images_list', 'publication_services', 'sharing_url', 'path', 'url', 'tracking', '_links', 'image')
    row_id = sgqlc.types.Field(Int, graphql_name='rowId')
    name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name')
    core_id = sgqlc.types.Field(String, graphql_name='coreId')
    core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument')
    order = sgqlc.types.Field(Int, graphql_name='order')
    title = sgqlc.types.Field(String, graphql_name='title')
    publication_services_by_organization_name = sgqlc.types.Field(sgqlc.types.non_null(PublicationServicesConnection), graphql_name='publicationServicesByOrganizationName', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            PublicationServicesOrderBy)), graphql_name='orderBy', default=('ORDER_ASC',))),
        ('condition', sgqlc.types.Arg(PublicationServiceCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(PublicationServiceFilter,
         graphql_name='filter', default=None)),
    ))
    )
    images = sgqlc.types.Field(sgqlc.types.non_null(ImagesCollectionsBinariesViewsConnection), graphql_name='images', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
    ))
    )
    images_list = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ImagesCollectionsBinariesView)), graphql_name='imagesList', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
    ))
    )
    publication_services = sgqlc.types.Field(sgqlc.types.non_null(PublicationServicesConnection), graphql_name='publicationServices', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            PublicationServicesOrderBy)), graphql_name='orderBy', default=None)),
        ('condition', sgqlc.types.Arg(PublicationServiceCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(PublicationServiceFilter,
         graphql_name='filter', default=None)),
    ))
    )
    sharing_url = sgqlc.types.Field(URL, graphql_name='sharingUrl')
    path = sgqlc.types.Field(String, graphql_name='path')
    url = sgqlc.types.Field(String, graphql_name='url', args=sgqlc.types.ArgDict((
        ('variant', sgqlc.types.Arg(UrlVariant, graphql_name='variant', default=None)),
    ))
    )
    tracking = sgqlc.types.Field(JSON, graphql_name='tracking')
    _links = sgqlc.types.Field(JSON, graphql_name='_links')
    image = sgqlc.types.Field(ImageType, graphql_name='image', args=sgqlc.types.ArgDict((
        ('aspect', sgqlc.types.Arg(AspectRatio, graphql_name='aspect', default=None)),
    ))
    )

__field_names__ = ('row_id', 'name', 'core_id', 'core_document', 'order', 'title', 'publication_services_by_organization_name', 'images', 'images_list', 'publication_services', 'sharing_url', 'path', 'url', 'tracking', '_links', 'image') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument') class-attribute instance-attribute

core_id = sgqlc.types.Field(String, graphql_name='coreId') class-attribute instance-attribute

image = sgqlc.types.Field(ImageType, graphql_name='image', args=sgqlc.types.ArgDict((('aspect', sgqlc.types.Arg(AspectRatio, graphql_name='aspect', default=None))))) class-attribute instance-attribute

images = sgqlc.types.Field(sgqlc.types.non_null(ImagesCollectionsBinariesViewsConnection), graphql_name='images', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None))))) class-attribute instance-attribute

images_list = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ImagesCollectionsBinariesView)), graphql_name='imagesList', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None))))) class-attribute instance-attribute

name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') class-attribute instance-attribute

order = sgqlc.types.Field(Int, graphql_name='order') class-attribute instance-attribute

path = sgqlc.types.Field(String, graphql_name='path') class-attribute instance-attribute

publication_services = sgqlc.types.Field(sgqlc.types.non_null(PublicationServicesConnection), graphql_name='publicationServices', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(PublicationServicesOrderBy)), graphql_name='orderBy', default=None)), ('condition', sgqlc.types.Arg(PublicationServiceCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(PublicationServiceFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

publication_services_by_organization_name = sgqlc.types.Field(sgqlc.types.non_null(PublicationServicesConnection), graphql_name='publicationServicesByOrganizationName', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(PublicationServicesOrderBy)), graphql_name='orderBy', default=('ORDER_ASC'))), ('condition', sgqlc.types.Arg(PublicationServiceCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(PublicationServiceFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

row_id = sgqlc.types.Field(Int, graphql_name='rowId') class-attribute instance-attribute

sharing_url = sgqlc.types.Field(URL, graphql_name='sharingUrl') class-attribute instance-attribute

title = sgqlc.types.Field(String, graphql_name='title') class-attribute instance-attribute

tracking = sgqlc.types.Field(JSON, graphql_name='tracking') class-attribute instance-attribute

url = sgqlc.types.Field(String, graphql_name='url', args=sgqlc.types.ArgDict((('variant', sgqlc.types.Arg(UrlVariant, graphql_name='variant', default=None))))) class-attribute instance-attribute

OrganizationCondition

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
class OrganizationCondition(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'name', 'core_id',
                       'core_document', 'order', 'title')
    id = sgqlc.types.Field(Int, graphql_name='id')
    name = sgqlc.types.Field(String, graphql_name='name')
    core_id = sgqlc.types.Field(String, graphql_name='coreId')
    core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument')
    order = sgqlc.types.Field(Int, graphql_name='order')
    title = sgqlc.types.Field(String, graphql_name='title')

__field_names__ = ('id', 'name', 'core_id', 'core_document', 'order', 'title') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument') class-attribute instance-attribute

core_id = sgqlc.types.Field(String, graphql_name='coreId') class-attribute instance-attribute

id = sgqlc.types.Field(Int, graphql_name='id') class-attribute instance-attribute

name = sgqlc.types.Field(String, graphql_name='name') class-attribute instance-attribute

order = sgqlc.types.Field(Int, graphql_name='order') class-attribute instance-attribute

title = sgqlc.types.Field(String, graphql_name='title') class-attribute instance-attribute

OrganizationFilter

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
class OrganizationFilter(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'name', 'core_id', 'core_document',
                       'order', 'title', 'and_', 'or_', 'not_')
    id = sgqlc.types.Field(IntFilter, graphql_name='id')
    name = sgqlc.types.Field('StringFilter', graphql_name='name')
    core_id = sgqlc.types.Field('StringFilter', graphql_name='coreId')
    core_document = sgqlc.types.Field(JSONFilter, graphql_name='coreDocument')
    order = sgqlc.types.Field(IntFilter, graphql_name='order')
    title = sgqlc.types.Field('StringFilter', graphql_name='title')
    and_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null('OrganizationFilter')), graphql_name='and')
    or_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null('OrganizationFilter')), graphql_name='or')
    not_ = sgqlc.types.Field('OrganizationFilter', graphql_name='not')

__field_names__ = ('id', 'name', 'core_id', 'core_document', 'order', 'title', 'and_', 'or_', 'not_') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('OrganizationFilter')), graphql_name='and') class-attribute instance-attribute

core_document = sgqlc.types.Field(JSONFilter, graphql_name='coreDocument') class-attribute instance-attribute

core_id = sgqlc.types.Field('StringFilter', graphql_name='coreId') class-attribute instance-attribute

id = sgqlc.types.Field(IntFilter, graphql_name='id') class-attribute instance-attribute

name = sgqlc.types.Field('StringFilter', graphql_name='name') class-attribute instance-attribute

not_ = sgqlc.types.Field('OrganizationFilter', graphql_name='not') class-attribute instance-attribute

or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('OrganizationFilter')), graphql_name='or') class-attribute instance-attribute

order = sgqlc.types.Field(IntFilter, graphql_name='order') class-attribute instance-attribute

title = sgqlc.types.Field('StringFilter', graphql_name='title') class-attribute instance-attribute

OrganizationsConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
class OrganizationsConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('nodes', 'edges', 'page_info',
                       'total_count', '_links', 'tracking')
    nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(
        sgqlc.types.non_null('Organization'))), graphql_name='nodes')
    edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(
        sgqlc.types.non_null('OrganizationsEdge'))), graphql_name='edges')
    page_info = sgqlc.types.Field(sgqlc.types.non_null(
        'PageInfo'), graphql_name='pageInfo')
    total_count = sgqlc.types.Field(
        sgqlc.types.non_null(Int), graphql_name='totalCount')
    _links = sgqlc.types.Field(JSON, graphql_name='_links')
    tracking = sgqlc.types.Field(JSON, graphql_name='tracking')

__field_names__ = ('nodes', 'edges', 'page_info', 'total_count', '_links', 'tracking') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('OrganizationsEdge'))), graphql_name='edges') class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('Organization'))), graphql_name='nodes') class-attribute instance-attribute

page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo') class-attribute instance-attribute

total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') class-attribute instance-attribute

tracking = sgqlc.types.Field(JSON, graphql_name='tracking') class-attribute instance-attribute

OrganizationsEdge

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2780
2781
2782
2783
2784
2785
class OrganizationsEdge(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('cursor', 'node')
    cursor = sgqlc.types.Field(Cursor, graphql_name='cursor')
    node = sgqlc.types.Field(sgqlc.types.non_null(
        'Organization'), graphql_name='node')

__field_names__ = ('cursor', 'node') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') class-attribute instance-attribute

node = sgqlc.types.Field(sgqlc.types.non_null('Organization'), graphql_name='node') class-attribute instance-attribute

OrganizationsOrderBy

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
165
166
167
168
class OrganizationsOrderBy(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('CORE_DOCUMENT_ASC', 'CORE_DOCUMENT_DESC', 'CORE_ID_ASC', 'CORE_ID_DESC', 'ID_ASC', 'ID_DESC', 'NAME_ASC',
                   'NAME_DESC', 'NATURAL', 'ORDER_ASC', 'ORDER_DESC', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'TITLE_ASC', 'TITLE_DESC')

__choices__ = ('CORE_DOCUMENT_ASC', 'CORE_DOCUMENT_DESC', 'CORE_ID_ASC', 'CORE_ID_DESC', 'ID_ASC', 'ID_DESC', 'NAME_ASC', 'NAME_DESC', 'NATURAL', 'ORDER_ASC', 'ORDER_DESC', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'TITLE_ASC', 'TITLE_DESC') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

PageInfo

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
class PageInfo(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('has_next_page', 'has_previous_page',
                       'start_cursor', 'end_cursor')
    has_next_page = sgqlc.types.Field(
        sgqlc.types.non_null(Boolean), graphql_name='hasNextPage')
    has_previous_page = sgqlc.types.Field(
        sgqlc.types.non_null(Boolean), graphql_name='hasPreviousPage')
    start_cursor = sgqlc.types.Field(Cursor, graphql_name='startCursor')
    end_cursor = sgqlc.types.Field(Cursor, graphql_name='endCursor')

__field_names__ = ('has_next_page', 'has_previous_page', 'start_cursor', 'end_cursor') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

end_cursor = sgqlc.types.Field(Cursor, graphql_name='endCursor') class-attribute instance-attribute

has_next_page = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='hasNextPage') class-attribute instance-attribute

has_previous_page = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='hasPreviousPage') class-attribute instance-attribute

start_cursor = sgqlc.types.Field(Cursor, graphql_name='startCursor') class-attribute instance-attribute

PermanentLivestream

Bases: sgqlc.types.Type, Node, CoreTeaser

Source code in src/libaudiothek/audiothek_schema.py
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
class PermanentLivestream(sgqlc.types.Type, Node, CoreTeaser):
    __schema__ = audiothek_schema
    __field_names__ = ('row_id', 'core_id', 'external_ids', 'publication_service_id', 'image', 'core_document', 'tracking', 'audios', 'image_collection_id',
                       'audio_binary_id', 'publisher_core_id', 'order', 'publication_service', 'audio_list', 'images', 'images_list', 'summary', 'description')
    row_id = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='rowId')
    core_id = sgqlc.types.Field(String, graphql_name='coreId')
    external_ids = sgqlc.types.Field(
        sgqlc.types.list_of(String), graphql_name='externalIds')
    publication_service_id = sgqlc.types.Field(
        sgqlc.types.non_null(Int), graphql_name='publicationServiceId')
    image = sgqlc.types.Field(ImageType, graphql_name='image')
    core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument')
    tracking = sgqlc.types.Field(JSON, graphql_name='tracking')
    audios = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null(StreamType)), graphql_name='audios')
    image_collection_id = sgqlc.types.Field(
        String, graphql_name='imageCollectionId')
    audio_binary_id = sgqlc.types.Field(String, graphql_name='audioBinaryId')
    publisher_core_id = sgqlc.types.Field(
        String, graphql_name='publisherCoreId')
    order = sgqlc.types.Field(Int, graphql_name='order')
    publication_service = sgqlc.types.Field(
        'PublicationService', graphql_name='publicationService')
    audio_list = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(AudioBinary)), graphql_name='audioList', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
    ))
    )
    images = sgqlc.types.Field(sgqlc.types.non_null(ImagesCollectionsBinariesViewsConnection), graphql_name='images', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
    ))
    )
    images_list = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ImagesCollectionsBinariesView)), graphql_name='imagesList', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
    ))
    )
    summary = sgqlc.types.Field(String, graphql_name='summary')
    description = sgqlc.types.Field(HTML, graphql_name='description')

__field_names__ = ('row_id', 'core_id', 'external_ids', 'publication_service_id', 'image', 'core_document', 'tracking', 'audios', 'image_collection_id', 'audio_binary_id', 'publisher_core_id', 'order', 'publication_service', 'audio_list', 'images', 'images_list', 'summary', 'description') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

audio_binary_id = sgqlc.types.Field(String, graphql_name='audioBinaryId') class-attribute instance-attribute

audio_list = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(AudioBinary)), graphql_name='audioList', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None))))) class-attribute instance-attribute

audios = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(StreamType)), graphql_name='audios') class-attribute instance-attribute

core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument') class-attribute instance-attribute

core_id = sgqlc.types.Field(String, graphql_name='coreId') class-attribute instance-attribute

description = sgqlc.types.Field(HTML, graphql_name='description') class-attribute instance-attribute

external_ids = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='externalIds') class-attribute instance-attribute

image = sgqlc.types.Field(ImageType, graphql_name='image') class-attribute instance-attribute

image_collection_id = sgqlc.types.Field(String, graphql_name='imageCollectionId') class-attribute instance-attribute

images = sgqlc.types.Field(sgqlc.types.non_null(ImagesCollectionsBinariesViewsConnection), graphql_name='images', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None))))) class-attribute instance-attribute

images_list = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ImagesCollectionsBinariesView)), graphql_name='imagesList', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None))))) class-attribute instance-attribute

order = sgqlc.types.Field(Int, graphql_name='order') class-attribute instance-attribute

publication_service = sgqlc.types.Field('PublicationService', graphql_name='publicationService') class-attribute instance-attribute

publication_service_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='publicationServiceId') class-attribute instance-attribute

publisher_core_id = sgqlc.types.Field(String, graphql_name='publisherCoreId') class-attribute instance-attribute

row_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='rowId') class-attribute instance-attribute

summary = sgqlc.types.Field(String, graphql_name='summary') class-attribute instance-attribute

tracking = sgqlc.types.Field(JSON, graphql_name='tracking') class-attribute instance-attribute

PermanentLivestreamCondition

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
class PermanentLivestreamCondition(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'core_id', 'external_ids', 'publication_service_id', 'title', 'image', 'core_document',
                       'stream', 'tracking', 'audios', 'image_collection_id', 'audio_binary_id', 'publisher_core_id', 'order')
    id = sgqlc.types.Field(String, graphql_name='id')
    core_id = sgqlc.types.Field(String, graphql_name='coreId')
    external_ids = sgqlc.types.Field(
        sgqlc.types.list_of(String), graphql_name='externalIds')
    publication_service_id = sgqlc.types.Field(
        Int, graphql_name='publicationServiceId')
    title = sgqlc.types.Field(String, graphql_name='title')
    image = sgqlc.types.Field(ImageTypeInput, graphql_name='image')
    core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument')
    stream = sgqlc.types.Field(JSON, graphql_name='stream')
    tracking = sgqlc.types.Field(JSON, graphql_name='tracking')
    audios = sgqlc.types.Field(sgqlc.types.list_of(
        'StreamTypeInput'), graphql_name='audios')
    image_collection_id = sgqlc.types.Field(
        String, graphql_name='imageCollectionId')
    audio_binary_id = sgqlc.types.Field(String, graphql_name='audioBinaryId')
    publisher_core_id = sgqlc.types.Field(
        String, graphql_name='publisherCoreId')
    order = sgqlc.types.Field(Int, graphql_name='order')

__field_names__ = ('id', 'core_id', 'external_ids', 'publication_service_id', 'title', 'image', 'core_document', 'stream', 'tracking', 'audios', 'image_collection_id', 'audio_binary_id', 'publisher_core_id', 'order') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

audio_binary_id = sgqlc.types.Field(String, graphql_name='audioBinaryId') class-attribute instance-attribute

audios = sgqlc.types.Field(sgqlc.types.list_of('StreamTypeInput'), graphql_name='audios') class-attribute instance-attribute

core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument') class-attribute instance-attribute

core_id = sgqlc.types.Field(String, graphql_name='coreId') class-attribute instance-attribute

external_ids = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='externalIds') class-attribute instance-attribute

id = sgqlc.types.Field(String, graphql_name='id') class-attribute instance-attribute

image = sgqlc.types.Field(ImageTypeInput, graphql_name='image') class-attribute instance-attribute

image_collection_id = sgqlc.types.Field(String, graphql_name='imageCollectionId') class-attribute instance-attribute

order = sgqlc.types.Field(Int, graphql_name='order') class-attribute instance-attribute

publication_service_id = sgqlc.types.Field(Int, graphql_name='publicationServiceId') class-attribute instance-attribute

publisher_core_id = sgqlc.types.Field(String, graphql_name='publisherCoreId') class-attribute instance-attribute

stream = sgqlc.types.Field(JSON, graphql_name='stream') class-attribute instance-attribute

title = sgqlc.types.Field(String, graphql_name='title') class-attribute instance-attribute

tracking = sgqlc.types.Field(JSON, graphql_name='tracking') class-attribute instance-attribute

PermanentLivestreamFilter

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
class PermanentLivestreamFilter(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'core_id', 'external_ids', 'publication_service_id', 'title', 'core_document', 'stream',
                       'tracking', 'image_collection_id', 'audio_binary_id', 'publisher_core_id', 'order', 'image', 'and_', 'or_', 'not_')
    id = sgqlc.types.Field('StringFilter', graphql_name='id')
    core_id = sgqlc.types.Field('StringFilter', graphql_name='coreId')
    external_ids = sgqlc.types.Field(
        'StringListFilter', graphql_name='externalIds')
    publication_service_id = sgqlc.types.Field(
        IntFilter, graphql_name='publicationServiceId')
    title = sgqlc.types.Field('StringFilter', graphql_name='title')
    core_document = sgqlc.types.Field(JSONFilter, graphql_name='coreDocument')
    stream = sgqlc.types.Field(JSONFilter, graphql_name='stream')
    tracking = sgqlc.types.Field(JSONFilter, graphql_name='tracking')
    image_collection_id = sgqlc.types.Field(
        'StringFilter', graphql_name='imageCollectionId')
    audio_binary_id = sgqlc.types.Field(
        'StringFilter', graphql_name='audioBinaryId')
    publisher_core_id = sgqlc.types.Field(
        'StringFilter', graphql_name='publisherCoreId')
    order = sgqlc.types.Field(IntFilter, graphql_name='order')
    image = sgqlc.types.Field(ImageTypeFilter, graphql_name='image')
    and_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null('PermanentLivestreamFilter')), graphql_name='and')
    or_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null('PermanentLivestreamFilter')), graphql_name='or')
    not_ = sgqlc.types.Field('PermanentLivestreamFilter', graphql_name='not')

__field_names__ = ('id', 'core_id', 'external_ids', 'publication_service_id', 'title', 'core_document', 'stream', 'tracking', 'image_collection_id', 'audio_binary_id', 'publisher_core_id', 'order', 'image', 'and_', 'or_', 'not_') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PermanentLivestreamFilter')), graphql_name='and') class-attribute instance-attribute

audio_binary_id = sgqlc.types.Field('StringFilter', graphql_name='audioBinaryId') class-attribute instance-attribute

core_document = sgqlc.types.Field(JSONFilter, graphql_name='coreDocument') class-attribute instance-attribute

core_id = sgqlc.types.Field('StringFilter', graphql_name='coreId') class-attribute instance-attribute

external_ids = sgqlc.types.Field('StringListFilter', graphql_name='externalIds') class-attribute instance-attribute

id = sgqlc.types.Field('StringFilter', graphql_name='id') class-attribute instance-attribute

image = sgqlc.types.Field(ImageTypeFilter, graphql_name='image') class-attribute instance-attribute

image_collection_id = sgqlc.types.Field('StringFilter', graphql_name='imageCollectionId') class-attribute instance-attribute

not_ = sgqlc.types.Field('PermanentLivestreamFilter', graphql_name='not') class-attribute instance-attribute

or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PermanentLivestreamFilter')), graphql_name='or') class-attribute instance-attribute

order = sgqlc.types.Field(IntFilter, graphql_name='order') class-attribute instance-attribute

publication_service_id = sgqlc.types.Field(IntFilter, graphql_name='publicationServiceId') class-attribute instance-attribute

publisher_core_id = sgqlc.types.Field('StringFilter', graphql_name='publisherCoreId') class-attribute instance-attribute

stream = sgqlc.types.Field(JSONFilter, graphql_name='stream') class-attribute instance-attribute

title = sgqlc.types.Field('StringFilter', graphql_name='title') class-attribute instance-attribute

tracking = sgqlc.types.Field(JSONFilter, graphql_name='tracking') class-attribute instance-attribute

PermanentLivestreamsConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
class PermanentLivestreamsConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('nodes', 'edges', 'page_info', 'total_count')
    nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(
        sgqlc.types.non_null('PermanentLivestream'))), graphql_name='nodes')
    edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(
        sgqlc.types.non_null('PermanentLivestreamsEdge'))), graphql_name='edges')
    page_info = sgqlc.types.Field(
        sgqlc.types.non_null(PageInfo), graphql_name='pageInfo')
    total_count = sgqlc.types.Field(
        sgqlc.types.non_null(Int), graphql_name='totalCount')

__field_names__ = ('nodes', 'edges', 'page_info', 'total_count') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('PermanentLivestreamsEdge'))), graphql_name='edges') class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('PermanentLivestream'))), graphql_name='nodes') class-attribute instance-attribute

page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') class-attribute instance-attribute

total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') class-attribute instance-attribute

PermanentLivestreamsEdge

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2813
2814
2815
2816
2817
2818
class PermanentLivestreamsEdge(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('cursor', 'node')
    cursor = sgqlc.types.Field(Cursor, graphql_name='cursor')
    node = sgqlc.types.Field(sgqlc.types.non_null(
        'PermanentLivestream'), graphql_name='node')

__field_names__ = ('cursor', 'node') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') class-attribute instance-attribute

node = sgqlc.types.Field(sgqlc.types.non_null('PermanentLivestream'), graphql_name='node') class-attribute instance-attribute

PermanentLivestreamsOrderBy

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
171
172
173
174
class PermanentLivestreamsOrderBy(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('AUDIOS_ASC', 'AUDIOS_DESC', 'AUDIO_BINARY_ID_ASC', 'AUDIO_BINARY_ID_DESC', 'CORE_DOCUMENT_ASC', 'CORE_DOCUMENT_DESC', 'CORE_ID_ASC', 'CORE_ID_DESC', 'EXTERNAL_IDS_ASC', 'EXTERNAL_IDS_DESC', 'ID_ASC', 'ID_DESC', 'IMAGE_ASC', 'IMAGE_COLLECTION_ID_ASC', 'IMAGE_COLLECTION_ID_DESC',
                   'IMAGE_DESC', 'NATURAL', 'ORDER_ASC', 'ORDER_DESC', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'PUBLICATION_SERVICE_ID_ASC', 'PUBLICATION_SERVICE_ID_DESC', 'PUBLISHER_CORE_ID_ASC', 'PUBLISHER_CORE_ID_DESC', 'STREAM_ASC', 'STREAM_DESC', 'TITLE_ASC', 'TITLE_DESC', 'TRACKING_ASC', 'TRACKING_DESC')

__choices__ = ('AUDIOS_ASC', 'AUDIOS_DESC', 'AUDIO_BINARY_ID_ASC', 'AUDIO_BINARY_ID_DESC', 'CORE_DOCUMENT_ASC', 'CORE_DOCUMENT_DESC', 'CORE_ID_ASC', 'CORE_ID_DESC', 'EXTERNAL_IDS_ASC', 'EXTERNAL_IDS_DESC', 'ID_ASC', 'ID_DESC', 'IMAGE_ASC', 'IMAGE_COLLECTION_ID_ASC', 'IMAGE_COLLECTION_ID_DESC', 'IMAGE_DESC', 'NATURAL', 'ORDER_ASC', 'ORDER_DESC', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'PUBLICATION_SERVICE_ID_ASC', 'PUBLICATION_SERVICE_ID_DESC', 'PUBLISHER_CORE_ID_ASC', 'PUBLISHER_CORE_ID_DESC', 'STREAM_ASC', 'STREAM_DESC', 'TITLE_ASC', 'TITLE_DESC', 'TRACKING_ASC', 'TRACKING_DESC') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

PermantentLivestreamConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
2821
2822
2823
2824
2825
2826
2827
class PermantentLivestreamConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('total_count', 'nodes')
    total_count = sgqlc.types.Field(
        sgqlc.types.non_null(Int), graphql_name='totalCount')
    nodes = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null('PermanentLivestream')), graphql_name='nodes')

__field_names__ = ('total_count', 'nodes') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PermanentLivestream')), graphql_name='nodes') class-attribute instance-attribute

total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') class-attribute instance-attribute

Playlist

Bases: sgqlc.types.Type, PlaylistInterface

Source code in src/libaudiothek/audiothek_schema.py
4527
4528
4529
class Playlist(sgqlc.types.Type, PlaylistInterface):
    __schema__ = audiothek_schema
    __field_names__ = ()

__field_names__ = () class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

PlaylistConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
class PlaylistConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('count', 'edges', 'nodes', 'page_info')
    count = sgqlc.types.Field(Int, graphql_name='count')
    edges = sgqlc.types.Field(sgqlc.types.list_of(
        'PlaylistEdge'), graphql_name='edges')
    nodes = sgqlc.types.Field(sgqlc.types.list_of(
        'PlaylistInterface'), graphql_name='nodes')
    page_info = sgqlc.types.Field(
        sgqlc.types.non_null(PageInfo), graphql_name='pageInfo')

__field_names__ = ('count', 'edges', 'nodes', 'page_info') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

count = sgqlc.types.Field(Int, graphql_name='count') class-attribute instance-attribute

edges = sgqlc.types.Field(sgqlc.types.list_of('PlaylistEdge'), graphql_name='edges') class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.list_of('PlaylistInterface'), graphql_name='nodes') class-attribute instance-attribute

page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') class-attribute instance-attribute

PlaylistConnectionFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1272
1273
1274
1275
1276
class PlaylistConnectionFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('empty', 'contains')
    empty = sgqlc.types.Field(BooleanFilterB, graphql_name='empty')
    contains = sgqlc.types.Field(ID, graphql_name='contains')

__field_names__ = ('empty', 'contains') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

contains = sgqlc.types.Field(ID, graphql_name='contains') class-attribute instance-attribute

empty = sgqlc.types.Field(BooleanFilterB, graphql_name='empty') class-attribute instance-attribute

PlaylistCreateInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
class PlaylistCreateInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'type',
                       'entries', 'private', 'sort_index', 'title')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    type = sgqlc.types.Field(String, graphql_name='type')
    entries = sgqlc.types.Field(sgqlc.types.list_of(
        ItemCreateInput), graphql_name='entries')
    private = sgqlc.types.Field(Boolean, graphql_name='private')
    sort_index = sgqlc.types.Field(Int, graphql_name='sortIndex')
    title = sgqlc.types.Field(String, graphql_name='title')

__field_names__ = ('client_mutation_id', 'type', 'entries', 'private', 'sort_index', 'title') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

entries = sgqlc.types.Field(sgqlc.types.list_of(ItemCreateInput), graphql_name='entries') class-attribute instance-attribute

private = sgqlc.types.Field(Boolean, graphql_name='private') class-attribute instance-attribute

sort_index = sgqlc.types.Field(Int, graphql_name='sortIndex') class-attribute instance-attribute

title = sgqlc.types.Field(String, graphql_name='title') class-attribute instance-attribute

type = sgqlc.types.Field(String, graphql_name='type') class-attribute instance-attribute

PlaylistEdge

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2842
2843
2844
2845
2846
2847
class PlaylistEdge(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('cursor', 'node')
    cursor = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='cursor')
    node = sgqlc.types.Field('PlaylistInterface', graphql_name='node')

__field_names__ = ('cursor', 'node') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

cursor = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='cursor') class-attribute instance-attribute

node = sgqlc.types.Field('PlaylistInterface', graphql_name='node') class-attribute instance-attribute

PlaylistEntryListInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1293
1294
1295
1296
1297
1298
1299
1300
1301
class PlaylistEntryListInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'entry', 'playlist')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    entry = sgqlc.types.Field(sgqlc.types.non_null(
        ItemCreateInput), graphql_name='entry')
    playlist = sgqlc.types.Field(
        sgqlc.types.non_null(ID), graphql_name='playlist')

__field_names__ = ('client_mutation_id', 'entry', 'playlist') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

entry = sgqlc.types.Field(sgqlc.types.non_null(ItemCreateInput), graphql_name='entry') class-attribute instance-attribute

playlist = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='playlist') class-attribute instance-attribute

PlaylistFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
class PlaylistFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('created_at', 'modified_at',
                       'private', 'sort_index', 'title', 'user')
    created_at = sgqlc.types.Field(DateFilterB, graphql_name='createdAt')
    modified_at = sgqlc.types.Field(DateFilterB, graphql_name='modifiedAt')
    private = sgqlc.types.Field(BooleanFilterB, graphql_name='private')
    sort_index = sgqlc.types.Field(IntFilterB, graphql_name='sortIndex')
    title = sgqlc.types.Field('StringFilterB', graphql_name='title')
    user = sgqlc.types.Field(EndUserRelationFilterB, graphql_name='user')

__field_names__ = ('created_at', 'modified_at', 'private', 'sort_index', 'title', 'user') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

created_at = sgqlc.types.Field(DateFilterB, graphql_name='createdAt') class-attribute instance-attribute

modified_at = sgqlc.types.Field(DateFilterB, graphql_name='modifiedAt') class-attribute instance-attribute

private = sgqlc.types.Field(BooleanFilterB, graphql_name='private') class-attribute instance-attribute

sort_index = sgqlc.types.Field(IntFilterB, graphql_name='sortIndex') class-attribute instance-attribute

title = sgqlc.types.Field('StringFilterB', graphql_name='title') class-attribute instance-attribute

user = sgqlc.types.Field(EndUserRelationFilterB, graphql_name='user') class-attribute instance-attribute

PlaylistInterface

Bases: sgqlc.types.Interface

Source code in src/libaudiothek/audiothek_schema.py
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
class PlaylistInterface(sgqlc.types.Interface):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'base_id_prefix', 'created_at', 'entries',
                       'modified_at', 'private', 'sort_index', 'title', 'user')
    id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id')
    base_id_prefix = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='baseIdPrefix')
    created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
    entries = sgqlc.types.Field(ItemConnection, graphql_name='entries', args=sgqlc.types.ArgDict((
        ('after', sgqlc.types.Arg(String, graphql_name='after', default=None)),
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('before', sgqlc.types.Arg(String, graphql_name='before', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('filter', sgqlc.types.Arg(ItemFilterB, graphql_name='filter', default=None)),
        ('order_by', sgqlc.types.Arg(ItemSortOrder,
         graphql_name='orderBy', default=None)),
    ))
    )
    modified_at = sgqlc.types.Field(DateTime, graphql_name='modifiedAt')
    private = sgqlc.types.Field(Boolean, graphql_name='private')
    sort_index = sgqlc.types.Field(Int, graphql_name='sortIndex')
    title = sgqlc.types.Field(String, graphql_name='title')
    user = sgqlc.types.Field(EndUserInterface, graphql_name='user')

__field_names__ = ('id', 'base_id_prefix', 'created_at', 'entries', 'modified_at', 'private', 'sort_index', 'title', 'user') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

base_id_prefix = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='baseIdPrefix') class-attribute instance-attribute

created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt') class-attribute instance-attribute

entries = sgqlc.types.Field(ItemConnection, graphql_name='entries', args=sgqlc.types.ArgDict((('after', sgqlc.types.Arg(String, graphql_name='after', default=None)), ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('before', sgqlc.types.Arg(String, graphql_name='before', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('filter', sgqlc.types.Arg(ItemFilterB, graphql_name='filter', default=None)), ('order_by', sgqlc.types.Arg(ItemSortOrder, graphql_name='orderBy', default=None))))) class-attribute instance-attribute

id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') class-attribute instance-attribute

modified_at = sgqlc.types.Field(DateTime, graphql_name='modifiedAt') class-attribute instance-attribute

private = sgqlc.types.Field(Boolean, graphql_name='private') class-attribute instance-attribute

sort_index = sgqlc.types.Field(Int, graphql_name='sortIndex') class-attribute instance-attribute

title = sgqlc.types.Field(String, graphql_name='title') class-attribute instance-attribute

user = sgqlc.types.Field(EndUserInterface, graphql_name='user') class-attribute instance-attribute

PlaylistPayload

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2875
2876
2877
2878
2879
2880
2881
class PlaylistPayload(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'changed_playlist')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    changed_playlist = sgqlc.types.Field(
        'Playlist', graphql_name='changedPlaylist')

__field_names__ = ('client_mutation_id', 'changed_playlist') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

changed_playlist = sgqlc.types.Field('Playlist', graphql_name='changedPlaylist') class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

PlaylistRelationFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1316
1317
1318
1319
1320
class PlaylistRelationFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'exists')
    id = sgqlc.types.Field(IDFilterB, graphql_name='id')
    exists = sgqlc.types.Field(BooleanFilterB, graphql_name='exists')

__field_names__ = ('id', 'exists') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

exists = sgqlc.types.Field(BooleanFilterB, graphql_name='exists') class-attribute instance-attribute

id = sgqlc.types.Field(IDFilterB, graphql_name='id') class-attribute instance-attribute

PlaylistRemoveAllListInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1323
1324
1325
1326
1327
1328
1329
class PlaylistRemoveAllListInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'playlist')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    playlist = sgqlc.types.Field(
        sgqlc.types.non_null(ID), graphql_name='playlist')

__field_names__ = ('client_mutation_id', 'playlist') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

playlist = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='playlist') class-attribute instance-attribute

PlaylistSortOrder

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
177
178
179
180
class PlaylistSortOrder(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('CREATEDAT_ASC', 'CREATEDAT_DESC', 'ENTRIES_ID_ASC', 'ENTRIES_ID_DESC', 'MODIFIEDAT_ASC',
                   'MODIFIEDAT_DESC', 'PRIVATE_ASC', 'PRIVATE_DESC', 'SORTINDEX_ASC', 'SORTINDEX_DESC', 'TITLE_ASC', 'TITLE_DESC')

__choices__ = ('CREATEDAT_ASC', 'CREATEDAT_DESC', 'ENTRIES_ID_ASC', 'ENTRIES_ID_DESC', 'MODIFIEDAT_ASC', 'MODIFIEDAT_DESC', 'PRIVATE_ASC', 'PRIVATE_DESC', 'SORTINDEX_ASC', 'SORTINDEX_DESC', 'TITLE_ASC', 'TITLE_DESC') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

PlaylistUpdateInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
class PlaylistUpdateInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'id', 'entries',
                       'private', 'sort_index', 'title')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id')
    entries = sgqlc.types.Field(sgqlc.types.list_of(
        ItemCreateInput), graphql_name='entries')
    private = sgqlc.types.Field(Boolean, graphql_name='private')
    sort_index = sgqlc.types.Field(Int, graphql_name='sortIndex')
    title = sgqlc.types.Field(String, graphql_name='title')

__field_names__ = ('client_mutation_id', 'id', 'entries', 'private', 'sort_index', 'title') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

entries = sgqlc.types.Field(sgqlc.types.list_of(ItemCreateInput), graphql_name='entries') class-attribute instance-attribute

id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') class-attribute instance-attribute

private = sgqlc.types.Field(Boolean, graphql_name='private') class-attribute instance-attribute

sort_index = sgqlc.types.Field(Int, graphql_name='sortIndex') class-attribute instance-attribute

title = sgqlc.types.Field(String, graphql_name='title') class-attribute instance-attribute

ProgramSet

Bases: sgqlc.types.Type, Node, Teaser, CoreTeaser

Source code in src/libaudiothek/audiothek_schema.py
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
class ProgramSet(sgqlc.types.Type, Node, Teaser, CoreTeaser):
    __schema__ = audiothek_schema
    __field_names__ = ('row_id', 'publication_service_id', 'editorial_category_id', 'core_id', 'core_document', 'image_collection_id', 'last_item_modified', 'last_item_added', 'publication_service', 'items', 'groupings_by_programset_id', 'groupings_by_show_id',
                       'categories_to_program_sets_by_program_set_core_id', 'categories_to_program_sets_by_program_set_core_id_list', 'editorial_category', 'images', 'images_list', 'editorial_categories', 'editorial_categories_list', 'show_type', 'description', '_links', 'core')
    row_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='rowId')
    publication_service_id = sgqlc.types.Field(
        sgqlc.types.non_null(Int), graphql_name='publicationServiceId')
    editorial_category_id = sgqlc.types.Field(
        String, graphql_name='editorialCategoryId')
    core_id = sgqlc.types.Field(String, graphql_name='coreId')
    core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument')
    image_collection_id = sgqlc.types.Field(
        String, graphql_name='imageCollectionId')
    last_item_modified = sgqlc.types.Field(
        Datetime, graphql_name='lastItemModified')
    last_item_added = sgqlc.types.Field(Datetime, graphql_name='lastItemAdded')
    publication_service = sgqlc.types.Field(
        'PublicationService', graphql_name='publicationService')
    items = sgqlc.types.Field(sgqlc.types.non_null(ItemsConnection), graphql_name='items', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            ItemsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))),
        ('condition', sgqlc.types.Arg(ItemCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(ItemFilter, graphql_name='filter', default=None)),
    ))
    )
    groupings_by_programset_id = sgqlc.types.Field(sgqlc.types.non_null(GroupingsConnection), graphql_name='groupingsByProgramsetId', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            GroupingsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))),
        ('condition', sgqlc.types.Arg(GroupingCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(GroupingFilter,
         graphql_name='filter', default=None)),
    ))
    )
    groupings_by_show_id = sgqlc.types.Field(sgqlc.types.non_null(GroupingsConnection), graphql_name='groupingsByShowId', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            GroupingsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))),
        ('condition', sgqlc.types.Arg(GroupingCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(GroupingFilter,
         graphql_name='filter', default=None)),
    ))
    )
    categories_to_program_sets_by_program_set_core_id = sgqlc.types.Field(sgqlc.types.non_null(CategoriesToProgramSetsConnection), graphql_name='categoriesToProgramSetsByProgramSetCoreId', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            CategoriesToProgramSetsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))),
        ('condition', sgqlc.types.Arg(CategoriesToProgramSetCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(CategoriesToProgramSetFilter,
         graphql_name='filter', default=None)),
    ))
    )
    categories_to_program_sets_by_program_set_core_id_list = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(CategoriesToProgramSet))), graphql_name='categoriesToProgramSetsByProgramSetCoreIdList', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            CategoriesToProgramSetsOrderBy)), graphql_name='orderBy', default=None)),
        ('condition', sgqlc.types.Arg(CategoriesToProgramSetCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(CategoriesToProgramSetFilter,
         graphql_name='filter', default=None)),
    ))
    )
    editorial_category = sgqlc.types.Field(
        EditorialCategory, graphql_name='editorialCategory')
    images = sgqlc.types.Field(sgqlc.types.non_null(ImagesCollectionsBinariesViewsConnection), graphql_name='images', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
    ))
    )
    images_list = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ImagesCollectionsBinariesView)), graphql_name='imagesList', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
    ))
    )
    editorial_categories = sgqlc.types.Field(sgqlc.types.non_null(ProgramSetEditorialCategoriesManyToManyConnection), graphql_name='editorialCategories', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            EditorialCategoriesOrderBy)), graphql_name='orderBy', default=('ORDER_ASC',))),
        ('condition', sgqlc.types.Arg(EditorialCategoryCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(EditorialCategoryFilter,
         graphql_name='filter', default=None)),
    ))
    )
    editorial_categories_list = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(EditorialCategory))), graphql_name='editorialCategoriesList', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            EditorialCategoriesOrderBy)), graphql_name='orderBy', default=None)),
        ('condition', sgqlc.types.Arg(EditorialCategoryCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(EditorialCategoryFilter,
         graphql_name='filter', default=None)),
    ))
    )
    show_type = sgqlc.types.Field(
        sgqlc.types.non_null(ShowType), graphql_name='showType')
    description = sgqlc.types.Field(HTML, graphql_name='description')
    _links = sgqlc.types.Field(JSON, graphql_name='_links')
    core = sgqlc.types.Field(JSON, graphql_name='core', args=sgqlc.types.ArgDict((
        ('filter', sgqlc.types.Arg(String, graphql_name='filter', default=None)),
        ('key', sgqlc.types.Arg(String, graphql_name='key', default=None)),
    ))
    )

__field_names__ = ('row_id', 'publication_service_id', 'editorial_category_id', 'core_id', 'core_document', 'image_collection_id', 'last_item_modified', 'last_item_added', 'publication_service', 'items', 'groupings_by_programset_id', 'groupings_by_show_id', 'categories_to_program_sets_by_program_set_core_id', 'categories_to_program_sets_by_program_set_core_id_list', 'editorial_category', 'images', 'images_list', 'editorial_categories', 'editorial_categories_list', 'show_type', 'description', '_links', 'core') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

categories_to_program_sets_by_program_set_core_id = sgqlc.types.Field(sgqlc.types.non_null(CategoriesToProgramSetsConnection), graphql_name='categoriesToProgramSetsByProgramSetCoreId', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(CategoriesToProgramSetsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC'))), ('condition', sgqlc.types.Arg(CategoriesToProgramSetCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(CategoriesToProgramSetFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

categories_to_program_sets_by_program_set_core_id_list = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(CategoriesToProgramSet))), graphql_name='categoriesToProgramSetsByProgramSetCoreIdList', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(CategoriesToProgramSetsOrderBy)), graphql_name='orderBy', default=None)), ('condition', sgqlc.types.Arg(CategoriesToProgramSetCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(CategoriesToProgramSetFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

core = sgqlc.types.Field(JSON, graphql_name='core', args=sgqlc.types.ArgDict((('filter', sgqlc.types.Arg(String, graphql_name='filter', default=None)), ('key', sgqlc.types.Arg(String, graphql_name='key', default=None))))) class-attribute instance-attribute

core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument') class-attribute instance-attribute

core_id = sgqlc.types.Field(String, graphql_name='coreId') class-attribute instance-attribute

description = sgqlc.types.Field(HTML, graphql_name='description') class-attribute instance-attribute

editorial_categories = sgqlc.types.Field(sgqlc.types.non_null(ProgramSetEditorialCategoriesManyToManyConnection), graphql_name='editorialCategories', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(EditorialCategoriesOrderBy)), graphql_name='orderBy', default=('ORDER_ASC'))), ('condition', sgqlc.types.Arg(EditorialCategoryCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(EditorialCategoryFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

editorial_categories_list = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(EditorialCategory))), graphql_name='editorialCategoriesList', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(EditorialCategoriesOrderBy)), graphql_name='orderBy', default=None)), ('condition', sgqlc.types.Arg(EditorialCategoryCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(EditorialCategoryFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

editorial_category = sgqlc.types.Field(EditorialCategory, graphql_name='editorialCategory') class-attribute instance-attribute

editorial_category_id = sgqlc.types.Field(String, graphql_name='editorialCategoryId') class-attribute instance-attribute

groupings_by_programset_id = sgqlc.types.Field(sgqlc.types.non_null(GroupingsConnection), graphql_name='groupingsByProgramsetId', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(GroupingsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC'))), ('condition', sgqlc.types.Arg(GroupingCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(GroupingFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

groupings_by_show_id = sgqlc.types.Field(sgqlc.types.non_null(GroupingsConnection), graphql_name='groupingsByShowId', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(GroupingsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC'))), ('condition', sgqlc.types.Arg(GroupingCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(GroupingFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

image_collection_id = sgqlc.types.Field(String, graphql_name='imageCollectionId') class-attribute instance-attribute

images = sgqlc.types.Field(sgqlc.types.non_null(ImagesCollectionsBinariesViewsConnection), graphql_name='images', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None))))) class-attribute instance-attribute

images_list = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ImagesCollectionsBinariesView)), graphql_name='imagesList', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None))))) class-attribute instance-attribute

items = sgqlc.types.Field(sgqlc.types.non_null(ItemsConnection), graphql_name='items', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ItemsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC'))), ('condition', sgqlc.types.Arg(ItemCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(ItemFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

last_item_added = sgqlc.types.Field(Datetime, graphql_name='lastItemAdded') class-attribute instance-attribute

last_item_modified = sgqlc.types.Field(Datetime, graphql_name='lastItemModified') class-attribute instance-attribute

publication_service = sgqlc.types.Field('PublicationService', graphql_name='publicationService') class-attribute instance-attribute

publication_service_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='publicationServiceId') class-attribute instance-attribute

row_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='rowId') class-attribute instance-attribute

show_type = sgqlc.types.Field(sgqlc.types.non_null(ShowType), graphql_name='showType') class-attribute instance-attribute

ProgramSetCondition

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
class ProgramSetCondition(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'publication_service_id', 'title', 'synopsis', 'number_of_elements', 'image',
                       'editorial_category_id', 'core_id', 'core_document', 'image_collection_id', 'last_item_modified', 'last_item_added')
    id = sgqlc.types.Field(Int, graphql_name='id')
    publication_service_id = sgqlc.types.Field(
        Int, graphql_name='publicationServiceId')
    title = sgqlc.types.Field(String, graphql_name='title')
    synopsis = sgqlc.types.Field(String, graphql_name='synopsis')
    number_of_elements = sgqlc.types.Field(
        Int, graphql_name='numberOfElements')
    image = sgqlc.types.Field(ImageTypeInput, graphql_name='image')
    editorial_category_id = sgqlc.types.Field(
        String, graphql_name='editorialCategoryId')
    core_id = sgqlc.types.Field(String, graphql_name='coreId')
    core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument')
    image_collection_id = sgqlc.types.Field(
        String, graphql_name='imageCollectionId')
    last_item_modified = sgqlc.types.Field(
        Datetime, graphql_name='lastItemModified')
    last_item_added = sgqlc.types.Field(Datetime, graphql_name='lastItemAdded')

__field_names__ = ('id', 'publication_service_id', 'title', 'synopsis', 'number_of_elements', 'image', 'editorial_category_id', 'core_id', 'core_document', 'image_collection_id', 'last_item_modified', 'last_item_added') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument') class-attribute instance-attribute

core_id = sgqlc.types.Field(String, graphql_name='coreId') class-attribute instance-attribute

editorial_category_id = sgqlc.types.Field(String, graphql_name='editorialCategoryId') class-attribute instance-attribute

id = sgqlc.types.Field(Int, graphql_name='id') class-attribute instance-attribute

image = sgqlc.types.Field(ImageTypeInput, graphql_name='image') class-attribute instance-attribute

image_collection_id = sgqlc.types.Field(String, graphql_name='imageCollectionId') class-attribute instance-attribute

last_item_added = sgqlc.types.Field(Datetime, graphql_name='lastItemAdded') class-attribute instance-attribute

last_item_modified = sgqlc.types.Field(Datetime, graphql_name='lastItemModified') class-attribute instance-attribute

number_of_elements = sgqlc.types.Field(Int, graphql_name='numberOfElements') class-attribute instance-attribute

publication_service_id = sgqlc.types.Field(Int, graphql_name='publicationServiceId') class-attribute instance-attribute

synopsis = sgqlc.types.Field(String, graphql_name='synopsis') class-attribute instance-attribute

title = sgqlc.types.Field(String, graphql_name='title') class-attribute instance-attribute

ProgramSetConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
class ProgramSetConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('count', 'edges', 'nodes', 'page_info')
    count = sgqlc.types.Field(Int, graphql_name='count')
    edges = sgqlc.types.Field(sgqlc.types.list_of(
        'ProgramSetEdge'), graphql_name='edges')
    nodes = sgqlc.types.Field(sgqlc.types.list_of(
        'ProgramSet'), graphql_name='nodes')
    page_info = sgqlc.types.Field(
        sgqlc.types.non_null(PageInfo), graphql_name='pageInfo')

__field_names__ = ('count', 'edges', 'nodes', 'page_info') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

count = sgqlc.types.Field(Int, graphql_name='count') class-attribute instance-attribute

edges = sgqlc.types.Field(sgqlc.types.list_of('ProgramSetEdge'), graphql_name='edges') class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.list_of('ProgramSet'), graphql_name='nodes') class-attribute instance-attribute

page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') class-attribute instance-attribute

ProgramSetConnectionFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1369
1370
1371
1372
1373
class ProgramSetConnectionFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'empty')
    id = sgqlc.types.Field(IntFilterB, graphql_name='id')
    empty = sgqlc.types.Field(BooleanFilterB, graphql_name='empty')

__field_names__ = ('id', 'empty') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

empty = sgqlc.types.Field(BooleanFilterB, graphql_name='empty') class-attribute instance-attribute

id = sgqlc.types.Field(IntFilterB, graphql_name='id') class-attribute instance-attribute

ProgramSetCreateInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1376
1377
1378
1379
1380
class ProgramSetCreateInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('type', 'id')
    type = sgqlc.types.Field(String, graphql_name='type')
    id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id')

__field_names__ = ('type', 'id') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='id') class-attribute instance-attribute

type = sgqlc.types.Field(String, graphql_name='type') class-attribute instance-attribute

ProgramSetEdge

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2896
2897
2898
2899
2900
2901
class ProgramSetEdge(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('cursor', 'node')
    cursor = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='cursor')
    node = sgqlc.types.Field('ProgramSet', graphql_name='node')

__field_names__ = ('cursor', 'node') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

cursor = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='cursor') class-attribute instance-attribute

node = sgqlc.types.Field('ProgramSet', graphql_name='node') class-attribute instance-attribute

ProgramSetEditorialCategoriesManyToManyConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
class ProgramSetEditorialCategoriesManyToManyConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('nodes', 'edges', 'page_info', 'total_count')
    nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(
        sgqlc.types.non_null('EditorialCategory'))), graphql_name='nodes')
    edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(
        'ProgramSetEditorialCategoriesManyToManyEdge'))), graphql_name='edges')
    page_info = sgqlc.types.Field(
        sgqlc.types.non_null(PageInfo), graphql_name='pageInfo')
    total_count = sgqlc.types.Field(
        sgqlc.types.non_null(Int), graphql_name='totalCount')

__field_names__ = ('nodes', 'edges', 'page_info', 'total_count') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ProgramSetEditorialCategoriesManyToManyEdge'))), graphql_name='edges') class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('EditorialCategory'))), graphql_name='nodes') class-attribute instance-attribute

page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') class-attribute instance-attribute

total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') class-attribute instance-attribute

ProgramSetEditorialCategoriesManyToManyEdge

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2917
2918
2919
2920
2921
2922
class ProgramSetEditorialCategoriesManyToManyEdge(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('cursor', 'node')
    cursor = sgqlc.types.Field(Cursor, graphql_name='cursor')
    node = sgqlc.types.Field(sgqlc.types.non_null(
        'EditorialCategory'), graphql_name='node')

__field_names__ = ('cursor', 'node') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') class-attribute instance-attribute

node = sgqlc.types.Field(sgqlc.types.non_null('EditorialCategory'), graphql_name='node') class-attribute instance-attribute

ProgramSetFilter

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
class ProgramSetFilter(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'publication_service_id', 'title', 'synopsis', 'number_of_elements', 'editorial_category_id',
                       'core_id', 'core_document', 'image_collection_id', 'last_item_modified', 'last_item_added', 'image', 'and_', 'or_', 'not_')
    id = sgqlc.types.Field(IntFilter, graphql_name='id')
    publication_service_id = sgqlc.types.Field(
        IntFilter, graphql_name='publicationServiceId')
    title = sgqlc.types.Field('StringFilter', graphql_name='title')
    synopsis = sgqlc.types.Field('StringFilter', graphql_name='synopsis')
    number_of_elements = sgqlc.types.Field(
        IntFilter, graphql_name='numberOfElements')
    editorial_category_id = sgqlc.types.Field(
        'StringFilter', graphql_name='editorialCategoryId')
    core_id = sgqlc.types.Field('StringFilter', graphql_name='coreId')
    core_document = sgqlc.types.Field(JSONFilter, graphql_name='coreDocument')
    image_collection_id = sgqlc.types.Field(
        'StringFilter', graphql_name='imageCollectionId')
    last_item_modified = sgqlc.types.Field(
        DatetimeFilter, graphql_name='lastItemModified')
    last_item_added = sgqlc.types.Field(
        DatetimeFilter, graphql_name='lastItemAdded')
    image = sgqlc.types.Field(ImageTypeFilter, graphql_name='image')
    and_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null('ProgramSetFilter')), graphql_name='and')
    or_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null('ProgramSetFilter')), graphql_name='or')
    not_ = sgqlc.types.Field('ProgramSetFilter', graphql_name='not')

__field_names__ = ('id', 'publication_service_id', 'title', 'synopsis', 'number_of_elements', 'editorial_category_id', 'core_id', 'core_document', 'image_collection_id', 'last_item_modified', 'last_item_added', 'image', 'and_', 'or_', 'not_') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ProgramSetFilter')), graphql_name='and') class-attribute instance-attribute

core_document = sgqlc.types.Field(JSONFilter, graphql_name='coreDocument') class-attribute instance-attribute

core_id = sgqlc.types.Field('StringFilter', graphql_name='coreId') class-attribute instance-attribute

editorial_category_id = sgqlc.types.Field('StringFilter', graphql_name='editorialCategoryId') class-attribute instance-attribute

id = sgqlc.types.Field(IntFilter, graphql_name='id') class-attribute instance-attribute

image = sgqlc.types.Field(ImageTypeFilter, graphql_name='image') class-attribute instance-attribute

image_collection_id = sgqlc.types.Field('StringFilter', graphql_name='imageCollectionId') class-attribute instance-attribute

last_item_added = sgqlc.types.Field(DatetimeFilter, graphql_name='lastItemAdded') class-attribute instance-attribute

last_item_modified = sgqlc.types.Field(DatetimeFilter, graphql_name='lastItemModified') class-attribute instance-attribute

not_ = sgqlc.types.Field('ProgramSetFilter', graphql_name='not') class-attribute instance-attribute

number_of_elements = sgqlc.types.Field(IntFilter, graphql_name='numberOfElements') class-attribute instance-attribute

or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ProgramSetFilter')), graphql_name='or') class-attribute instance-attribute

publication_service_id = sgqlc.types.Field(IntFilter, graphql_name='publicationServiceId') class-attribute instance-attribute

synopsis = sgqlc.types.Field('StringFilter', graphql_name='synopsis') class-attribute instance-attribute

title = sgqlc.types.Field('StringFilter', graphql_name='title') class-attribute instance-attribute

ProgramSetFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1412
1413
1414
1415
class ProgramSetFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('id',)
    id = sgqlc.types.Field(IntFilterB, graphql_name='id')

__field_names__ = ('id') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

id = sgqlc.types.Field(IntFilterB, graphql_name='id') class-attribute instance-attribute

ProgramSetRelationFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1418
1419
1420
1421
class ProgramSetRelationFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('id',)
    id = sgqlc.types.Field(IntFilterB, graphql_name='id')

__field_names__ = ('id') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

id = sgqlc.types.Field(IntFilterB, graphql_name='id') class-attribute instance-attribute

ProgramSetSection

Bases: sgqlc.types.Type, Section

Source code in src/libaudiothek/audiothek_schema.py
4667
4668
4669
4670
class ProgramSetSection(sgqlc.types.Type, Section):
    __schema__ = audiothek_schema
    __field_names__ = ('key',)
    key = sgqlc.types.Field(String, graphql_name='key')

__field_names__ = ('key') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

key = sgqlc.types.Field(String, graphql_name='key') class-attribute instance-attribute

ProgramSetSortOrder

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
183
184
185
class ProgramSetSortOrder(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('ID_ASC', 'ID_DESC')

__choices__ = ('ID_ASC', 'ID_DESC') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

ProgramSetSubscription

Bases: sgqlc.types.Type, ProgramSetSubscriptionInterface

Source code in src/libaudiothek/audiothek_schema.py
4673
4674
4675
class ProgramSetSubscription(sgqlc.types.Type, ProgramSetSubscriptionInterface):
    __schema__ = audiothek_schema
    __field_names__ = ()

__field_names__ = () class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

ProgramSetSubscriptionConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
class ProgramSetSubscriptionConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('count', 'edges', 'nodes', 'page_info')
    count = sgqlc.types.Field(Int, graphql_name='count')
    edges = sgqlc.types.Field(sgqlc.types.list_of(
        'ProgramSetSubscriptionEdge'), graphql_name='edges')
    nodes = sgqlc.types.Field(sgqlc.types.list_of(
        'ProgramSetSubscriptionInterface'), graphql_name='nodes')
    page_info = sgqlc.types.Field(
        sgqlc.types.non_null(PageInfo), graphql_name='pageInfo')

__field_names__ = ('count', 'edges', 'nodes', 'page_info') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

count = sgqlc.types.Field(Int, graphql_name='count') class-attribute instance-attribute

edges = sgqlc.types.Field(sgqlc.types.list_of('ProgramSetSubscriptionEdge'), graphql_name='edges') class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.list_of('ProgramSetSubscriptionInterface'), graphql_name='nodes') class-attribute instance-attribute

page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') class-attribute instance-attribute

ProgramSetSubscriptionConnectionFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
class ProgramSetSubscriptionConnectionFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('created_at', 'last_visited_at',
                       'modified_at', 'subscribed_at', 'empty')
    created_at = sgqlc.types.Field(DateFilterB, graphql_name='createdAt')
    last_visited_at = sgqlc.types.Field(
        DateFilterB, graphql_name='lastVisitedAt')
    modified_at = sgqlc.types.Field(DateFilterB, graphql_name='modifiedAt')
    subscribed_at = sgqlc.types.Field(DateFilterB, graphql_name='subscribedAt')
    empty = sgqlc.types.Field(BooleanFilterB, graphql_name='empty')

__field_names__ = ('created_at', 'last_visited_at', 'modified_at', 'subscribed_at', 'empty') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

created_at = sgqlc.types.Field(DateFilterB, graphql_name='createdAt') class-attribute instance-attribute

empty = sgqlc.types.Field(BooleanFilterB, graphql_name='empty') class-attribute instance-attribute

last_visited_at = sgqlc.types.Field(DateFilterB, graphql_name='lastVisitedAt') class-attribute instance-attribute

modified_at = sgqlc.types.Field(DateFilterB, graphql_name='modifiedAt') class-attribute instance-attribute

subscribed_at = sgqlc.types.Field(DateFilterB, graphql_name='subscribedAt') class-attribute instance-attribute

ProgramSetSubscriptionCreateInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1436
1437
1438
1439
1440
1441
1442
1443
1444
class ProgramSetSubscriptionCreateInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('type', 'last_visited_at',
                       'subscribed_at', 'subscribed_program_set')
    type = sgqlc.types.Field(String, graphql_name='type')
    last_visited_at = sgqlc.types.Field(DateTime, graphql_name='lastVisitedAt')
    subscribed_at = sgqlc.types.Field(DateTime, graphql_name='subscribedAt')
    subscribed_program_set = sgqlc.types.Field(sgqlc.types.non_null(
        ProgramSetCreateInput), graphql_name='subscribedProgramSet')

__field_names__ = ('type', 'last_visited_at', 'subscribed_at', 'subscribed_program_set') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

last_visited_at = sgqlc.types.Field(DateTime, graphql_name='lastVisitedAt') class-attribute instance-attribute

subscribed_at = sgqlc.types.Field(DateTime, graphql_name='subscribedAt') class-attribute instance-attribute

subscribed_program_set = sgqlc.types.Field(sgqlc.types.non_null(ProgramSetCreateInput), graphql_name='subscribedProgramSet') class-attribute instance-attribute

type = sgqlc.types.Field(String, graphql_name='type') class-attribute instance-attribute

ProgramSetSubscriptionEdge

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2937
2938
2939
2940
2941
2942
2943
class ProgramSetSubscriptionEdge(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('cursor', 'node')
    cursor = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='cursor')
    node = sgqlc.types.Field(
        'ProgramSetSubscriptionInterface', graphql_name='node')

__field_names__ = ('cursor', 'node') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

cursor = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='cursor') class-attribute instance-attribute

node = sgqlc.types.Field('ProgramSetSubscriptionInterface', graphql_name='node') class-attribute instance-attribute

ProgramSetSubscriptionFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1447
1448
1449
1450
1451
1452
1453
1454
1455
class ProgramSetSubscriptionFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('created_at', 'last_visited_at',
                       'modified_at', 'subscribed_at')
    created_at = sgqlc.types.Field(DateFilterB, graphql_name='createdAt')
    last_visited_at = sgqlc.types.Field(
        DateFilterB, graphql_name='lastVisitedAt')
    modified_at = sgqlc.types.Field(DateFilterB, graphql_name='modifiedAt')
    subscribed_at = sgqlc.types.Field(DateFilterB, graphql_name='subscribedAt')

__field_names__ = ('created_at', 'last_visited_at', 'modified_at', 'subscribed_at') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

created_at = sgqlc.types.Field(DateFilterB, graphql_name='createdAt') class-attribute instance-attribute

last_visited_at = sgqlc.types.Field(DateFilterB, graphql_name='lastVisitedAt') class-attribute instance-attribute

modified_at = sgqlc.types.Field(DateFilterB, graphql_name='modifiedAt') class-attribute instance-attribute

subscribed_at = sgqlc.types.Field(DateFilterB, graphql_name='subscribedAt') class-attribute instance-attribute

ProgramSetSubscriptionInterface

Bases: sgqlc.types.Interface

Source code in src/libaudiothek/audiothek_schema.py
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
class ProgramSetSubscriptionInterface(sgqlc.types.Interface):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'base_id_prefix', 'belongs_to', 'created_at',
                       'last_visited_at', 'modified_at', 'subscribed_at', 'subscribed_program_set')
    id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id')
    base_id_prefix = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='baseIdPrefix')
    belongs_to = sgqlc.types.Field(
        'SubscriptionListInterface', graphql_name='belongsTo')
    created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
    last_visited_at = sgqlc.types.Field(DateTime, graphql_name='lastVisitedAt')
    modified_at = sgqlc.types.Field(DateTime, graphql_name='modifiedAt')
    subscribed_at = sgqlc.types.Field(DateTime, graphql_name='subscribedAt')
    subscribed_program_set = sgqlc.types.Field(
        'ProgramSet', graphql_name='subscribedProgramSet')

__field_names__ = ('id', 'base_id_prefix', 'belongs_to', 'created_at', 'last_visited_at', 'modified_at', 'subscribed_at', 'subscribed_program_set') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

base_id_prefix = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='baseIdPrefix') class-attribute instance-attribute

belongs_to = sgqlc.types.Field('SubscriptionListInterface', graphql_name='belongsTo') class-attribute instance-attribute

created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt') class-attribute instance-attribute

id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') class-attribute instance-attribute

last_visited_at = sgqlc.types.Field(DateTime, graphql_name='lastVisitedAt') class-attribute instance-attribute

modified_at = sgqlc.types.Field(DateTime, graphql_name='modifiedAt') class-attribute instance-attribute

subscribed_at = sgqlc.types.Field(DateTime, graphql_name='subscribedAt') class-attribute instance-attribute

subscribed_program_set = sgqlc.types.Field('ProgramSet', graphql_name='subscribedProgramSet') class-attribute instance-attribute

ProgramSetSubscriptionPayload

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2963
2964
2965
2966
2967
2968
2969
2970
class ProgramSetSubscriptionPayload(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id',
                       'changed_program_set_subscription')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    changed_program_set_subscription = sgqlc.types.Field(
        'ProgramSetSubscription', graphql_name='changedProgramSetSubscription')

__field_names__ = ('client_mutation_id', 'changed_program_set_subscription') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

changed_program_set_subscription = sgqlc.types.Field('ProgramSetSubscription', graphql_name='changedProgramSetSubscription') class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

ProgramSetSubscriptionRelationFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1458
1459
1460
1461
1462
1463
1464
1465
1466
class ProgramSetSubscriptionRelationFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('created_at', 'last_visited_at',
                       'modified_at', 'subscribed_at')
    created_at = sgqlc.types.Field(DateFilterB, graphql_name='createdAt')
    last_visited_at = sgqlc.types.Field(
        DateFilterB, graphql_name='lastVisitedAt')
    modified_at = sgqlc.types.Field(DateFilterB, graphql_name='modifiedAt')
    subscribed_at = sgqlc.types.Field(DateFilterB, graphql_name='subscribedAt')

__field_names__ = ('created_at', 'last_visited_at', 'modified_at', 'subscribed_at') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

created_at = sgqlc.types.Field(DateFilterB, graphql_name='createdAt') class-attribute instance-attribute

last_visited_at = sgqlc.types.Field(DateFilterB, graphql_name='lastVisitedAt') class-attribute instance-attribute

modified_at = sgqlc.types.Field(DateFilterB, graphql_name='modifiedAt') class-attribute instance-attribute

subscribed_at = sgqlc.types.Field(DateFilterB, graphql_name='subscribedAt') class-attribute instance-attribute

ProgramSetSubscriptionRemoveAllListInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1469
1470
1471
1472
1473
1474
1475
class ProgramSetSubscriptionRemoveAllListInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'program_set_subscription')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    program_set_subscription = sgqlc.types.Field(
        sgqlc.types.non_null(ID), graphql_name='programSetSubscription')

__field_names__ = ('client_mutation_id', 'program_set_subscription') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

program_set_subscription = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='programSetSubscription') class-attribute instance-attribute

ProgramSetSubscriptionSortOrder

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
188
189
190
191
class ProgramSetSubscriptionSortOrder(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('CREATEDAT_ASC', 'CREATEDAT_DESC', 'LASTVISITEDAT_ASC', 'LASTVISITEDAT_DESC', 'MODIFIEDAT_ASC',
                   'MODIFIEDAT_DESC', 'SUBSCRIBEDAT_ASC', 'SUBSCRIBEDAT_DESC', 'SUBSCRIBEDPROGRAMSET_ID_ASC', 'SUBSCRIBEDPROGRAMSET_ID_DESC')

__choices__ = ('CREATEDAT_ASC', 'CREATEDAT_DESC', 'LASTVISITEDAT_ASC', 'LASTVISITEDAT_DESC', 'MODIFIEDAT_ASC', 'MODIFIEDAT_DESC', 'SUBSCRIBEDAT_ASC', 'SUBSCRIBEDAT_DESC', 'SUBSCRIBEDPROGRAMSET_ID_ASC', 'SUBSCRIBEDPROGRAMSET_ID_DESC') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

ProgramSetSubscriptionUpdateByProgramSetIdInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1478
1479
1480
1481
1482
1483
1484
class ProgramSetSubscriptionUpdateByProgramSetIdInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'program_set_subscription')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    program_set_subscription = sgqlc.types.Field(sgqlc.types.non_null(
        ProgramSetSubscriptionCreateInput), graphql_name='programSetSubscription')

__field_names__ = ('client_mutation_id', 'program_set_subscription') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

program_set_subscription = sgqlc.types.Field(sgqlc.types.non_null(ProgramSetSubscriptionCreateInput), graphql_name='programSetSubscription') class-attribute instance-attribute

ProgramSetSubscriptionUpdateInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
class ProgramSetSubscriptionUpdateInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'id', 'last_visited_at',
                       'subscribed_at', 'subscribed_program_set')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id')
    last_visited_at = sgqlc.types.Field(DateTime, graphql_name='lastVisitedAt')
    subscribed_at = sgqlc.types.Field(DateTime, graphql_name='subscribedAt')
    subscribed_program_set = sgqlc.types.Field(
        ProgramSetCreateInput, graphql_name='subscribedProgramSet')

__field_names__ = ('client_mutation_id', 'id', 'last_visited_at', 'subscribed_at', 'subscribed_program_set') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') class-attribute instance-attribute

last_visited_at = sgqlc.types.Field(DateTime, graphql_name='lastVisitedAt') class-attribute instance-attribute

subscribed_at = sgqlc.types.Field(DateTime, graphql_name='subscribedAt') class-attribute instance-attribute

subscribed_program_set = sgqlc.types.Field(ProgramSetCreateInput, graphql_name='subscribedProgramSet') class-attribute instance-attribute

ProgramSetsConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
class ProgramSetsConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('nodes', 'edges', 'page_info', 'total_count')
    nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(
        sgqlc.types.non_null('ProgramSet'))), graphql_name='nodes')
    edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(
        sgqlc.types.non_null('ProgramSetsEdge'))), graphql_name='edges')
    page_info = sgqlc.types.Field(
        sgqlc.types.non_null(PageInfo), graphql_name='pageInfo')
    total_count = sgqlc.types.Field(
        sgqlc.types.non_null(Int), graphql_name='totalCount')

__field_names__ = ('nodes', 'edges', 'page_info', 'total_count') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ProgramSetsEdge'))), graphql_name='edges') class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ProgramSet'))), graphql_name='nodes') class-attribute instance-attribute

page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') class-attribute instance-attribute

total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') class-attribute instance-attribute

ProgramSetsEdge

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
2986
2987
2988
2989
2990
2991
class ProgramSetsEdge(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('cursor', 'node')
    cursor = sgqlc.types.Field(Cursor, graphql_name='cursor')
    node = sgqlc.types.Field(sgqlc.types.non_null(
        'ProgramSet'), graphql_name='node')

__field_names__ = ('cursor', 'node') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') class-attribute instance-attribute

node = sgqlc.types.Field(sgqlc.types.non_null('ProgramSet'), graphql_name='node') class-attribute instance-attribute

ProgramSetsOrderBy

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
194
195
196
197
class ProgramSetsOrderBy(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('CORE_DOCUMENT_ASC', 'CORE_DOCUMENT_DESC', 'CORE_ID_ASC', 'CORE_ID_DESC', 'EDITORIAL_CATEGORY_ID_ASC', 'EDITORIAL_CATEGORY_ID_DESC', 'ID_ASC', 'ID_DESC', 'IMAGE_ASC', 'IMAGE_COLLECTION_ID_ASC', 'IMAGE_COLLECTION_ID_DESC', 'IMAGE_DESC', 'LAST_ITEM_ADDED_ASC', 'LAST_ITEM_ADDED_DESC',
                   'LAST_ITEM_MODIFIED_ASC', 'LAST_ITEM_MODIFIED_DESC', 'NATURAL', 'NUMBER_OF_ELEMENTS_ASC', 'NUMBER_OF_ELEMENTS_DESC', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'PUBLICATION_SERVICE_ID_ASC', 'PUBLICATION_SERVICE_ID_DESC', 'SYNOPSIS_ASC', 'SYNOPSIS_DESC', 'TITLE_ASC', 'TITLE_DESC')

__choices__ = ('CORE_DOCUMENT_ASC', 'CORE_DOCUMENT_DESC', 'CORE_ID_ASC', 'CORE_ID_DESC', 'EDITORIAL_CATEGORY_ID_ASC', 'EDITORIAL_CATEGORY_ID_DESC', 'ID_ASC', 'ID_DESC', 'IMAGE_ASC', 'IMAGE_COLLECTION_ID_ASC', 'IMAGE_COLLECTION_ID_DESC', 'IMAGE_DESC', 'LAST_ITEM_ADDED_ASC', 'LAST_ITEM_ADDED_DESC', 'LAST_ITEM_MODIFIED_ASC', 'LAST_ITEM_MODIFIED_DESC', 'NATURAL', 'NUMBER_OF_ELEMENTS_ASC', 'NUMBER_OF_ELEMENTS_DESC', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'PUBLICATION_SERVICE_ID_ASC', 'PUBLICATION_SERVICE_ID_DESC', 'SYNOPSIS_ASC', 'SYNOPSIS_DESC', 'TITLE_ASC', 'TITLE_DESC') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

ProgramSetsSearchConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
2994
2995
2996
2997
2998
2999
3000
3001
class ProgramSetsSearchConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('page_info', 'total_count', 'nodes')
    page_info = sgqlc.types.Field(PageInfo, graphql_name='pageInfo')
    total_count = sgqlc.types.Field(
        sgqlc.types.non_null(Int), graphql_name='totalCount')
    nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(
        sgqlc.types.non_null('ProgramSet'))), graphql_name='nodes')

__field_names__ = ('page_info', 'total_count', 'nodes') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ProgramSet'))), graphql_name='nodes') class-attribute instance-attribute

page_info = sgqlc.types.Field(PageInfo, graphql_name='pageInfo') class-attribute instance-attribute

total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') class-attribute instance-attribute

Property

Bases: sgqlc.types.Type, PropertyInterface

Source code in src/libaudiothek/audiothek_schema.py
4678
4679
4680
class Property(sgqlc.types.Type, PropertyInterface):
    __schema__ = audiothek_schema
    __field_names__ = ()

__field_names__ = () class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

PropertyConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
class PropertyConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('count', 'edges', 'nodes', 'page_info')
    count = sgqlc.types.Field(Int, graphql_name='count')
    edges = sgqlc.types.Field(sgqlc.types.list_of(
        'PropertyEdge'), graphql_name='edges')
    nodes = sgqlc.types.Field(sgqlc.types.list_of(
        'PropertyInterface'), graphql_name='nodes')
    page_info = sgqlc.types.Field(
        sgqlc.types.non_null(PageInfo), graphql_name='pageInfo')

__field_names__ = ('count', 'edges', 'nodes', 'page_info') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

count = sgqlc.types.Field(Int, graphql_name='count') class-attribute instance-attribute

edges = sgqlc.types.Field(sgqlc.types.list_of('PropertyEdge'), graphql_name='edges') class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.list_of('PropertyInterface'), graphql_name='nodes') class-attribute instance-attribute

page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') class-attribute instance-attribute

PropertyConnectionFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1500
1501
1502
1503
1504
class PropertyConnectionFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('empty', 'contains')
    empty = sgqlc.types.Field(BooleanFilterB, graphql_name='empty')
    contains = sgqlc.types.Field(ID, graphql_name='contains')

__field_names__ = ('empty', 'contains') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

contains = sgqlc.types.Field(ID, graphql_name='contains') class-attribute instance-attribute

empty = sgqlc.types.Field(BooleanFilterB, graphql_name='empty') class-attribute instance-attribute

PropertyCreateInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1507
1508
1509
1510
1511
1512
1513
1514
1515
class PropertyCreateInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'type', 'key', 'value')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    type = sgqlc.types.Field(String, graphql_name='type')
    key = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='key')
    value = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='value')

__field_names__ = ('client_mutation_id', 'type', 'key', 'value') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

key = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='key') class-attribute instance-attribute

type = sgqlc.types.Field(String, graphql_name='type') class-attribute instance-attribute

value = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='value') class-attribute instance-attribute

PropertyEdge

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
3016
3017
3018
3019
3020
3021
class PropertyEdge(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('cursor', 'node')
    cursor = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='cursor')
    node = sgqlc.types.Field('PropertyInterface', graphql_name='node')

__field_names__ = ('cursor', 'node') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

cursor = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='cursor') class-attribute instance-attribute

node = sgqlc.types.Field('PropertyInterface', graphql_name='node') class-attribute instance-attribute

PropertyFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1518
1519
1520
1521
1522
1523
1524
1525
class PropertyFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('created_at', 'key', 'modified_at', 'user', 'value')
    created_at = sgqlc.types.Field(DateFilterB, graphql_name='createdAt')
    key = sgqlc.types.Field('StringFilterB', graphql_name='key')
    modified_at = sgqlc.types.Field(DateFilterB, graphql_name='modifiedAt')
    user = sgqlc.types.Field(EndUserRelationFilterB, graphql_name='user')
    value = sgqlc.types.Field('StringFilterB', graphql_name='value')

__field_names__ = ('created_at', 'key', 'modified_at', 'user', 'value') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

created_at = sgqlc.types.Field(DateFilterB, graphql_name='createdAt') class-attribute instance-attribute

key = sgqlc.types.Field('StringFilterB', graphql_name='key') class-attribute instance-attribute

modified_at = sgqlc.types.Field(DateFilterB, graphql_name='modifiedAt') class-attribute instance-attribute

user = sgqlc.types.Field(EndUserRelationFilterB, graphql_name='user') class-attribute instance-attribute

value = sgqlc.types.Field('StringFilterB', graphql_name='value') class-attribute instance-attribute

PropertyInterface

Bases: sgqlc.types.Interface

Source code in src/libaudiothek/audiothek_schema.py
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
class PropertyInterface(sgqlc.types.Interface):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'base_id_prefix', 'created_at',
                       'key', 'modified_at', 'user', 'value')
    id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id')
    base_id_prefix = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='baseIdPrefix')
    created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
    key = sgqlc.types.Field(String, graphql_name='key')
    modified_at = sgqlc.types.Field(DateTime, graphql_name='modifiedAt')
    user = sgqlc.types.Field(EndUserInterface, graphql_name='user')
    value = sgqlc.types.Field(String, graphql_name='value')

__field_names__ = ('id', 'base_id_prefix', 'created_at', 'key', 'modified_at', 'user', 'value') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

base_id_prefix = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='baseIdPrefix') class-attribute instance-attribute

created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt') class-attribute instance-attribute

id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') class-attribute instance-attribute

key = sgqlc.types.Field(String, graphql_name='key') class-attribute instance-attribute

modified_at = sgqlc.types.Field(DateTime, graphql_name='modifiedAt') class-attribute instance-attribute

user = sgqlc.types.Field(EndUserInterface, graphql_name='user') class-attribute instance-attribute

value = sgqlc.types.Field(String, graphql_name='value') class-attribute instance-attribute

PropertyPayload

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
3038
3039
3040
3041
3042
3043
3044
class PropertyPayload(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'changed_property')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    changed_property = sgqlc.types.Field(
        'Property', graphql_name='changedProperty')

__field_names__ = ('client_mutation_id', 'changed_property') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

changed_property = sgqlc.types.Field('Property', graphql_name='changedProperty') class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

PropertyRelationFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1528
1529
1530
1531
1532
class PropertyRelationFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'exists')
    id = sgqlc.types.Field(IDFilterB, graphql_name='id')
    exists = sgqlc.types.Field(BooleanFilterB, graphql_name='exists')

__field_names__ = ('id', 'exists') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

exists = sgqlc.types.Field(BooleanFilterB, graphql_name='exists') class-attribute instance-attribute

id = sgqlc.types.Field(IDFilterB, graphql_name='id') class-attribute instance-attribute

PropertyRemoveAllListInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1535
1536
1537
1538
1539
1540
1541
class PropertyRemoveAllListInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'property')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    property = sgqlc.types.Field(
        sgqlc.types.non_null(ID), graphql_name='property')

__field_names__ = ('client_mutation_id', 'property') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

property = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='property') class-attribute instance-attribute

PropertySortOrder

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
200
201
202
203
class PropertySortOrder(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('CREATEDAT_ASC', 'CREATEDAT_DESC', 'KEY_ASC', 'KEY_DESC',
                   'MODIFIEDAT_ASC', 'MODIFIEDAT_DESC', 'VALUE_ASC', 'VALUE_DESC')

__choices__ = ('CREATEDAT_ASC', 'CREATEDAT_DESC', 'KEY_ASC', 'KEY_DESC', 'MODIFIEDAT_ASC', 'MODIFIEDAT_DESC', 'VALUE_ASC', 'VALUE_DESC') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

PropertyUpdateInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1544
1545
1546
1547
1548
1549
1550
1551
class PropertyUpdateInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'id', 'key', 'value')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id')
    key = sgqlc.types.Field(String, graphql_name='key')
    value = sgqlc.types.Field(String, graphql_name='value')

__field_names__ = ('client_mutation_id', 'id', 'key', 'value') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') class-attribute instance-attribute

key = sgqlc.types.Field(String, graphql_name='key') class-attribute instance-attribute

value = sgqlc.types.Field(String, graphql_name='value') class-attribute instance-attribute

PublicationService

Bases: sgqlc.types.Type, Node, Teaser, CoreTeaser

Source code in src/libaudiothek/audiothek_schema.py
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
class PublicationService(sgqlc.types.Type, Node, Teaser, CoreTeaser):
    __schema__ = audiothek_schema
    __field_names__ = ('row_id', 'organization_name', 'genre', 'branding_color', 'dvb_service_id', 'core_id', 'core_document', 'external_ids',
                       'homepage_url', 'order', 'parent_service_id', 'organization', 'program_sets', 'permanent_livestreams', 'images', 'images_list', '_links')
    row_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='rowId')
    organization_name = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='organizationName')
    genre = sgqlc.types.Field(String, graphql_name='genre')
    branding_color = sgqlc.types.Field(String, graphql_name='brandingColor')
    dvb_service_id = sgqlc.types.Field(Int, graphql_name='dvbServiceId')
    core_id = sgqlc.types.Field(String, graphql_name='coreId')
    core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument')
    external_ids = sgqlc.types.Field(
        sgqlc.types.list_of(String), graphql_name='externalIds')
    homepage_url = sgqlc.types.Field(String, graphql_name='homepageUrl')
    order = sgqlc.types.Field(Int, graphql_name='order')
    parent_service_id = sgqlc.types.Field(
        String, graphql_name='parentServiceId')
    organization = sgqlc.types.Field(Organization, graphql_name='organization')
    program_sets = sgqlc.types.Field(sgqlc.types.non_null(ProgramSetsConnection), graphql_name='programSets', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            ProgramSetsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))),
        ('condition', sgqlc.types.Arg(ProgramSetCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(ProgramSetFilter,
         graphql_name='filter', default=None)),
    ))
    )
    permanent_livestreams = sgqlc.types.Field(sgqlc.types.non_null(PermanentLivestreamsConnection), graphql_name='permanentLivestreams', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            PermanentLivestreamsOrderBy)), graphql_name='orderBy', default=('ORDER_ASC',))),
        ('condition', sgqlc.types.Arg(PermanentLivestreamCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(PermanentLivestreamFilter,
         graphql_name='filter', default=None)),
    ))
    )
    images = sgqlc.types.Field(sgqlc.types.non_null(ImagesCollectionsBinariesViewsConnection), graphql_name='images', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
    ))
    )
    images_list = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ImagesCollectionsBinariesView)), graphql_name='imagesList', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
    ))
    )
    _links = sgqlc.types.Field(JSON, graphql_name='_links')

__field_names__ = ('row_id', 'organization_name', 'genre', 'branding_color', 'dvb_service_id', 'core_id', 'core_document', 'external_ids', 'homepage_url', 'order', 'parent_service_id', 'organization', 'program_sets', 'permanent_livestreams', 'images', 'images_list', '_links') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

branding_color = sgqlc.types.Field(String, graphql_name='brandingColor') class-attribute instance-attribute

core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument') class-attribute instance-attribute

core_id = sgqlc.types.Field(String, graphql_name='coreId') class-attribute instance-attribute

dvb_service_id = sgqlc.types.Field(Int, graphql_name='dvbServiceId') class-attribute instance-attribute

external_ids = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='externalIds') class-attribute instance-attribute

genre = sgqlc.types.Field(String, graphql_name='genre') class-attribute instance-attribute

homepage_url = sgqlc.types.Field(String, graphql_name='homepageUrl') class-attribute instance-attribute

images = sgqlc.types.Field(sgqlc.types.non_null(ImagesCollectionsBinariesViewsConnection), graphql_name='images', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None))))) class-attribute instance-attribute

images_list = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ImagesCollectionsBinariesView)), graphql_name='imagesList', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None))))) class-attribute instance-attribute

order = sgqlc.types.Field(Int, graphql_name='order') class-attribute instance-attribute

organization = sgqlc.types.Field(Organization, graphql_name='organization') class-attribute instance-attribute

organization_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='organizationName') class-attribute instance-attribute

parent_service_id = sgqlc.types.Field(String, graphql_name='parentServiceId') class-attribute instance-attribute

permanent_livestreams = sgqlc.types.Field(sgqlc.types.non_null(PermanentLivestreamsConnection), graphql_name='permanentLivestreams', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(PermanentLivestreamsOrderBy)), graphql_name='orderBy', default=('ORDER_ASC'))), ('condition', sgqlc.types.Arg(PermanentLivestreamCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(PermanentLivestreamFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

program_sets = sgqlc.types.Field(sgqlc.types.non_null(ProgramSetsConnection), graphql_name='programSets', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProgramSetsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC'))), ('condition', sgqlc.types.Arg(ProgramSetCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(ProgramSetFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

row_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='rowId') class-attribute instance-attribute

PublicationServiceCondition

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
class PublicationServiceCondition(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'organization_name', 'title', 'synopsis', 'genre', 'branding_color', 'dvb_service_id',
                       'number_of_elements', 'image', 'core_id', 'core_document', 'external_ids', 'homepage_url', 'order', 'parent_service_id')
    id = sgqlc.types.Field(Int, graphql_name='id')
    organization_name = sgqlc.types.Field(
        String, graphql_name='organizationName')
    title = sgqlc.types.Field(String, graphql_name='title')
    synopsis = sgqlc.types.Field(String, graphql_name='synopsis')
    genre = sgqlc.types.Field(String, graphql_name='genre')
    branding_color = sgqlc.types.Field(String, graphql_name='brandingColor')
    dvb_service_id = sgqlc.types.Field(Int, graphql_name='dvbServiceId')
    number_of_elements = sgqlc.types.Field(
        Int, graphql_name='numberOfElements')
    image = sgqlc.types.Field(ImageTypeInput, graphql_name='image')
    core_id = sgqlc.types.Field(String, graphql_name='coreId')
    core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument')
    external_ids = sgqlc.types.Field(
        sgqlc.types.list_of(String), graphql_name='externalIds')
    homepage_url = sgqlc.types.Field(String, graphql_name='homepageUrl')
    order = sgqlc.types.Field(Int, graphql_name='order')
    parent_service_id = sgqlc.types.Field(
        String, graphql_name='parentServiceId')

__field_names__ = ('id', 'organization_name', 'title', 'synopsis', 'genre', 'branding_color', 'dvb_service_id', 'number_of_elements', 'image', 'core_id', 'core_document', 'external_ids', 'homepage_url', 'order', 'parent_service_id') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

branding_color = sgqlc.types.Field(String, graphql_name='brandingColor') class-attribute instance-attribute

core_document = sgqlc.types.Field(JSON, graphql_name='coreDocument') class-attribute instance-attribute

core_id = sgqlc.types.Field(String, graphql_name='coreId') class-attribute instance-attribute

dvb_service_id = sgqlc.types.Field(Int, graphql_name='dvbServiceId') class-attribute instance-attribute

external_ids = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='externalIds') class-attribute instance-attribute

genre = sgqlc.types.Field(String, graphql_name='genre') class-attribute instance-attribute

homepage_url = sgqlc.types.Field(String, graphql_name='homepageUrl') class-attribute instance-attribute

id = sgqlc.types.Field(Int, graphql_name='id') class-attribute instance-attribute

image = sgqlc.types.Field(ImageTypeInput, graphql_name='image') class-attribute instance-attribute

number_of_elements = sgqlc.types.Field(Int, graphql_name='numberOfElements') class-attribute instance-attribute

order = sgqlc.types.Field(Int, graphql_name='order') class-attribute instance-attribute

organization_name = sgqlc.types.Field(String, graphql_name='organizationName') class-attribute instance-attribute

parent_service_id = sgqlc.types.Field(String, graphql_name='parentServiceId') class-attribute instance-attribute

synopsis = sgqlc.types.Field(String, graphql_name='synopsis') class-attribute instance-attribute

title = sgqlc.types.Field(String, graphql_name='title') class-attribute instance-attribute

PublicationServiceFilter

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
class PublicationServiceFilter(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'organization_name', 'title', 'synopsis', 'genre', 'branding_color', 'dvb_service_id', 'number_of_elements',
                       'core_id', 'core_document', 'external_ids', 'homepage_url', 'order', 'parent_service_id', 'image', 'and_', 'or_', 'not_')
    id = sgqlc.types.Field(IntFilter, graphql_name='id')
    organization_name = sgqlc.types.Field(
        'StringFilter', graphql_name='organizationName')
    title = sgqlc.types.Field('StringFilter', graphql_name='title')
    synopsis = sgqlc.types.Field('StringFilter', graphql_name='synopsis')
    genre = sgqlc.types.Field('StringFilter', graphql_name='genre')
    branding_color = sgqlc.types.Field(
        'StringFilter', graphql_name='brandingColor')
    dvb_service_id = sgqlc.types.Field(IntFilter, graphql_name='dvbServiceId')
    number_of_elements = sgqlc.types.Field(
        IntFilter, graphql_name='numberOfElements')
    core_id = sgqlc.types.Field('StringFilter', graphql_name='coreId')
    core_document = sgqlc.types.Field(JSONFilter, graphql_name='coreDocument')
    external_ids = sgqlc.types.Field(
        'StringListFilter', graphql_name='externalIds')
    homepage_url = sgqlc.types.Field(
        'StringFilter', graphql_name='homepageUrl')
    order = sgqlc.types.Field(IntFilter, graphql_name='order')
    parent_service_id = sgqlc.types.Field(
        'StringFilter', graphql_name='parentServiceId')
    image = sgqlc.types.Field(ImageTypeFilter, graphql_name='image')
    and_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null('PublicationServiceFilter')), graphql_name='and')
    or_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null('PublicationServiceFilter')), graphql_name='or')
    not_ = sgqlc.types.Field('PublicationServiceFilter', graphql_name='not')

__field_names__ = ('id', 'organization_name', 'title', 'synopsis', 'genre', 'branding_color', 'dvb_service_id', 'number_of_elements', 'core_id', 'core_document', 'external_ids', 'homepage_url', 'order', 'parent_service_id', 'image', 'and_', 'or_', 'not_') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PublicationServiceFilter')), graphql_name='and') class-attribute instance-attribute

branding_color = sgqlc.types.Field('StringFilter', graphql_name='brandingColor') class-attribute instance-attribute

core_document = sgqlc.types.Field(JSONFilter, graphql_name='coreDocument') class-attribute instance-attribute

core_id = sgqlc.types.Field('StringFilter', graphql_name='coreId') class-attribute instance-attribute

dvb_service_id = sgqlc.types.Field(IntFilter, graphql_name='dvbServiceId') class-attribute instance-attribute

external_ids = sgqlc.types.Field('StringListFilter', graphql_name='externalIds') class-attribute instance-attribute

genre = sgqlc.types.Field('StringFilter', graphql_name='genre') class-attribute instance-attribute

homepage_url = sgqlc.types.Field('StringFilter', graphql_name='homepageUrl') class-attribute instance-attribute

id = sgqlc.types.Field(IntFilter, graphql_name='id') class-attribute instance-attribute

image = sgqlc.types.Field(ImageTypeFilter, graphql_name='image') class-attribute instance-attribute

not_ = sgqlc.types.Field('PublicationServiceFilter', graphql_name='not') class-attribute instance-attribute

number_of_elements = sgqlc.types.Field(IntFilter, graphql_name='numberOfElements') class-attribute instance-attribute

or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PublicationServiceFilter')), graphql_name='or') class-attribute instance-attribute

order = sgqlc.types.Field(IntFilter, graphql_name='order') class-attribute instance-attribute

organization_name = sgqlc.types.Field('StringFilter', graphql_name='organizationName') class-attribute instance-attribute

parent_service_id = sgqlc.types.Field('StringFilter', graphql_name='parentServiceId') class-attribute instance-attribute

synopsis = sgqlc.types.Field('StringFilter', graphql_name='synopsis') class-attribute instance-attribute

title = sgqlc.types.Field('StringFilter', graphql_name='title') class-attribute instance-attribute

PublicationServicesConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
class PublicationServicesConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('nodes', 'edges', 'page_info', 'total_count')
    nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(
        sgqlc.types.non_null('PublicationService'))), graphql_name='nodes')
    edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(
        sgqlc.types.non_null('PublicationServicesEdge'))), graphql_name='edges')
    page_info = sgqlc.types.Field(
        sgqlc.types.non_null(PageInfo), graphql_name='pageInfo')
    total_count = sgqlc.types.Field(
        sgqlc.types.non_null(Int), graphql_name='totalCount')

__field_names__ = ('nodes', 'edges', 'page_info', 'total_count') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

edges = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('PublicationServicesEdge'))), graphql_name='edges') class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('PublicationService'))), graphql_name='nodes') class-attribute instance-attribute

page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') class-attribute instance-attribute

total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='totalCount') class-attribute instance-attribute

PublicationServicesEdge

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
3060
3061
3062
3063
3064
3065
class PublicationServicesEdge(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('cursor', 'node')
    cursor = sgqlc.types.Field(Cursor, graphql_name='cursor')
    node = sgqlc.types.Field(sgqlc.types.non_null(
        'PublicationService'), graphql_name='node')

__field_names__ = ('cursor', 'node') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

cursor = sgqlc.types.Field(Cursor, graphql_name='cursor') class-attribute instance-attribute

node = sgqlc.types.Field(sgqlc.types.non_null('PublicationService'), graphql_name='node') class-attribute instance-attribute

PublicationServicesOrderBy

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
206
207
208
209
class PublicationServicesOrderBy(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('BRANDING_COLOR_ASC', 'BRANDING_COLOR_DESC', 'CORE_DOCUMENT_ASC', 'CORE_DOCUMENT_DESC', 'CORE_ID_ASC', 'CORE_ID_DESC', 'DVB_SERVICE_ID_ASC', 'DVB_SERVICE_ID_DESC', 'EXTERNAL_IDS_ASC', 'EXTERNAL_IDS_DESC', 'GENRE_ASC', 'GENRE_DESC', 'HOMEPAGE_URL_ASC', 'HOMEPAGE_URL_DESC', 'ID_ASC', 'ID_DESC', 'IMAGE_ASC',
                   'IMAGE_DESC', 'NATURAL', 'NUMBER_OF_ELEMENTS_ASC', 'NUMBER_OF_ELEMENTS_DESC', 'ORDER_ASC', 'ORDER_DESC', 'ORGANIZATION_NAME_ASC', 'ORGANIZATION_NAME_DESC', 'PARENT_SERVICE_ID_ASC', 'PARENT_SERVICE_ID_DESC', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'SYNOPSIS_ASC', 'SYNOPSIS_DESC', 'TITLE_ASC', 'TITLE_DESC')

__choices__ = ('BRANDING_COLOR_ASC', 'BRANDING_COLOR_DESC', 'CORE_DOCUMENT_ASC', 'CORE_DOCUMENT_DESC', 'CORE_ID_ASC', 'CORE_ID_DESC', 'DVB_SERVICE_ID_ASC', 'DVB_SERVICE_ID_DESC', 'EXTERNAL_IDS_ASC', 'EXTERNAL_IDS_DESC', 'GENRE_ASC', 'GENRE_DESC', 'HOMEPAGE_URL_ASC', 'HOMEPAGE_URL_DESC', 'ID_ASC', 'ID_DESC', 'IMAGE_ASC', 'IMAGE_DESC', 'NATURAL', 'NUMBER_OF_ELEMENTS_ASC', 'NUMBER_OF_ELEMENTS_DESC', 'ORDER_ASC', 'ORDER_DESC', 'ORGANIZATION_NAME_ASC', 'ORGANIZATION_NAME_DESC', 'PARENT_SERVICE_ID_ASC', 'PARENT_SERVICE_ID_DESC', 'PRIMARY_KEY_ASC', 'PRIMARY_KEY_DESC', 'SYNOPSIS_ASC', 'SYNOPSIS_DESC', 'TITLE_ASC', 'TITLE_DESC') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

PublishScheduledItemsInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1611
1612
1613
1614
1615
class PublishScheduledItemsInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id',)
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')

__field_names__ = ('client_mutation_id') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

PublishScheduledItemsPayload

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
3068
3069
3070
3071
3072
3073
3074
class PublishScheduledItemsPayload(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'big_int', 'query')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    big_int = sgqlc.types.Field(BigInt, graphql_name='bigInt')
    query = sgqlc.types.Field('Query', graphql_name='query')

__field_names__ = ('client_mutation_id', 'big_int', 'query') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

big_int = sgqlc.types.Field(BigInt, graphql_name='bigInt') class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

query = sgqlc.types.Field('Query', graphql_name='query') class-attribute instance-attribute

PublishableThing

Bases: sgqlc.types.Type, PublishableThingInterface

Source code in src/libaudiothek/audiothek_schema.py
4746
4747
4748
class PublishableThing(sgqlc.types.Type, PublishableThingInterface):
    __schema__ = audiothek_schema
    __field_names__ = ()

__field_names__ = () class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

PublishableThingConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
class PublishableThingConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('count', 'edges', 'nodes', 'page_info')
    count = sgqlc.types.Field(Int, graphql_name='count')
    edges = sgqlc.types.Field(sgqlc.types.list_of(
        'PublishableThingEdge'), graphql_name='edges')
    nodes = sgqlc.types.Field(sgqlc.types.list_of(
        'PublishableThingInterface'), graphql_name='nodes')
    page_info = sgqlc.types.Field(
        sgqlc.types.non_null(PageInfo), graphql_name='pageInfo')

__field_names__ = ('count', 'edges', 'nodes', 'page_info') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

count = sgqlc.types.Field(Int, graphql_name='count') class-attribute instance-attribute

edges = sgqlc.types.Field(sgqlc.types.list_of('PublishableThingEdge'), graphql_name='edges') class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.list_of('PublishableThingInterface'), graphql_name='nodes') class-attribute instance-attribute

page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') class-attribute instance-attribute

PublishableThingConnectionFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1618
1619
1620
1621
1622
class PublishableThingConnectionFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('empty', 'contains')
    empty = sgqlc.types.Field(BooleanFilterB, graphql_name='empty')
    contains = sgqlc.types.Field(ID, graphql_name='contains')

__field_names__ = ('empty', 'contains') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

contains = sgqlc.types.Field(ID, graphql_name='contains') class-attribute instance-attribute

empty = sgqlc.types.Field(BooleanFilterB, graphql_name='empty') class-attribute instance-attribute

PublishableThingEdge

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
3089
3090
3091
3092
3093
3094
class PublishableThingEdge(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('cursor', 'node')
    cursor = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='cursor')
    node = sgqlc.types.Field('PublishableThingInterface', graphql_name='node')

__field_names__ = ('cursor', 'node') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

cursor = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='cursor') class-attribute instance-attribute

node = sgqlc.types.Field('PublishableThingInterface', graphql_name='node') class-attribute instance-attribute

PublishableThingFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1625
1626
1627
1628
1629
1630
class PublishableThingFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('created_at', 'modified_at', 'no_index')
    created_at = sgqlc.types.Field(DateFilterB, graphql_name='createdAt')
    modified_at = sgqlc.types.Field(DateFilterB, graphql_name='modifiedAt')
    no_index = sgqlc.types.Field(BooleanFilterB, graphql_name='noIndex')

__field_names__ = ('created_at', 'modified_at', 'no_index') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

created_at = sgqlc.types.Field(DateFilterB, graphql_name='createdAt') class-attribute instance-attribute

modified_at = sgqlc.types.Field(DateFilterB, graphql_name='modifiedAt') class-attribute instance-attribute

no_index = sgqlc.types.Field(BooleanFilterB, graphql_name='noIndex') class-attribute instance-attribute

PublishableThingInterface

Bases: sgqlc.types.Interface

Source code in src/libaudiothek/audiothek_schema.py
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
class PublishableThingInterface(sgqlc.types.Interface):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'base_id_prefix', 'created_at',
                       'modified_at', 'no_index')
    id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id')
    base_id_prefix = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='baseIdPrefix')
    created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
    modified_at = sgqlc.types.Field(DateTime, graphql_name='modifiedAt')
    no_index = sgqlc.types.Field(Boolean, graphql_name='noIndex')

__field_names__ = ('id', 'base_id_prefix', 'created_at', 'modified_at', 'no_index') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

base_id_prefix = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='baseIdPrefix') class-attribute instance-attribute

created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt') class-attribute instance-attribute

id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') class-attribute instance-attribute

modified_at = sgqlc.types.Field(DateTime, graphql_name='modifiedAt') class-attribute instance-attribute

no_index = sgqlc.types.Field(Boolean, graphql_name='noIndex') class-attribute instance-attribute

PublishableThingRelationFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1633
1634
1635
1636
1637
class PublishableThingRelationFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'exists')
    id = sgqlc.types.Field(IDFilterB, graphql_name='id')
    exists = sgqlc.types.Field(BooleanFilterB, graphql_name='exists')

__field_names__ = ('id', 'exists') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

exists = sgqlc.types.Field(BooleanFilterB, graphql_name='exists') class-attribute instance-attribute

id = sgqlc.types.Field(IDFilterB, graphql_name='id') class-attribute instance-attribute

PublishableThingSortOrder

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
212
213
214
215
class PublishableThingSortOrder(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('CREATEDAT_ASC', 'CREATEDAT_DESC', 'MODIFIEDAT_ASC',
                   'MODIFIEDAT_DESC', 'NOINDEX_ASC', 'NOINDEX_DESC')

__choices__ = ('CREATEDAT_ASC', 'CREATEDAT_DESC', 'MODIFIEDAT_ASC', 'MODIFIEDAT_DESC', 'NOINDEX_ASC', 'NOINDEX_DESC') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

Query

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
class Query(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('all_end_users', 'all_playlists', 'bookmark', 'bookmark_list', 'end_user', 'history_entry', 'playlist', 'program_set_subscription', 'system', 'configs', 'editorial_categories', 'editorial_collections', 'groupings', 'images_collections_binaries_views', 'items', 'migrations', 'organizations', 'permanent_livestreams', 'program_sets', 'publication_services', 'audio_binary', 'categories_to_program_set', 'concept', 'config', 'editorial_category', 'editorial_category_by_sophora_id', 'editorial_collection', 'editorial_collection_by_coremedia_id', 'grouping', 'grouping_by_core_id', 'image_binary', 'image_collection', 'image', 'item', 'item_by_core_id', 'item_by_external_id', 'migration', 'migration_by_name', 'organization_by_id', 'organization', 'organization_by_core_id', 'permanent_livestream', 'permanent_livestream_by_core_id', 'program_set', 'program_set_by_core_id', 'publication_service', 'publication_service_by_title',
                       'publication_service_by_core_id', 'transcript', 'debug_show_groups', 'editorial_categories_by_ids', 'editorial_categories_by_ids_list', 'editorial_collections_by_ids', 'editorial_collections_by_ids_list', 'isnumeric', 'items_by_ids', 'items_by_ids_list', 'jsonb_array', 'program_sets_by_ids', 'program_sets_by_ids_list', 'shows_with_mapping', 'shows_with_mapping_list', 'audio_binary_by_node_id', 'categories_to_program_set_by_node_id', 'concept_by_node_id', 'config_by_node_id', 'editorial_category_by_node_id', 'editorial_collection_by_node_id', 'grouping_by_node_id', 'image_binary_by_node_id', 'image_collection_by_node_id', 'image_by_node_id', 'item_by_node_id', 'migration_by_node_id', 'organization_by_node_id', 'permanent_livestream_by_node_id', 'program_set_by_node_id', 'publication_service_by_node_id', 'transcript_by_node_id', 'search', 'homescreen', 'show', 'section', 'widget', 'widgets', 'compilations', 'teasers', 'node')
    all_end_users = sgqlc.types.Field(EndUserConnection, graphql_name='allEndUsers', args=sgqlc.types.ArgDict((
        ('after', sgqlc.types.Arg(String, graphql_name='after', default=None)),
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('before', sgqlc.types.Arg(String, graphql_name='before', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('filter', sgqlc.types.Arg(EndUserFilterB,
         graphql_name='filter', default=None)),
        ('order_by', sgqlc.types.Arg(EndUserSortOrder,
         graphql_name='orderBy', default=None)),
    ))
    )
    all_playlists = sgqlc.types.Field(PlaylistConnection, graphql_name='allPlaylists', args=sgqlc.types.ArgDict((
        ('after', sgqlc.types.Arg(String, graphql_name='after', default=None)),
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('before', sgqlc.types.Arg(String, graphql_name='before', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('filter', sgqlc.types.Arg(PlaylistFilterB,
         graphql_name='filter', default=None)),
        ('order_by', sgqlc.types.Arg(PlaylistSortOrder,
         graphql_name='orderBy', default=None)),
    ))
    )
    bookmark = sgqlc.types.Field(BookmarkInterface, graphql_name='bookmark', args=sgqlc.types.ArgDict((
        ('id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='id', default=None)),
    ))
    )
    bookmark_list = sgqlc.types.Field(BookmarkListInterface, graphql_name='bookmarkList', args=sgqlc.types.ArgDict((
        ('id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='id', default=None)),
    ))
    )
    end_user = sgqlc.types.Field(EndUserInterface, graphql_name='endUser', args=sgqlc.types.ArgDict((
        ('id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='id', default=None)),
    ))
    )
    history_entry = sgqlc.types.Field(HistoryEntryInterface, graphql_name='historyEntry', args=sgqlc.types.ArgDict((
        ('id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='id', default=None)),
    ))
    )
    playlist = sgqlc.types.Field(PlaylistInterface, graphql_name='playlist', args=sgqlc.types.ArgDict((
        ('id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='id', default=None)),
    ))
    )
    program_set_subscription = sgqlc.types.Field(ProgramSetSubscriptionInterface, graphql_name='programSetSubscription', args=sgqlc.types.ArgDict((
        ('id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='id', default=None)),
    ))
    )
    system = sgqlc.types.Field('SystemInterface', graphql_name='system', args=sgqlc.types.ArgDict((
        ('id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='id', default=None)),
    ))
    )
    configs = sgqlc.types.Field(ConfigsConnection, graphql_name='configs', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            ConfigsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))),
        ('condition', sgqlc.types.Arg(ConfigCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(ConfigFilter, graphql_name='filter', default=None)),
    ))
    )
    editorial_categories = sgqlc.types.Field(EditorialCategoriesConnection, graphql_name='editorialCategories', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            EditorialCategoriesOrderBy)), graphql_name='orderBy', default=('ORDER_ASC',))),
        ('condition', sgqlc.types.Arg(EditorialCategoryCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(EditorialCategoryFilter,
         graphql_name='filter', default=None)),
    ))
    )
    editorial_collections = sgqlc.types.Field(EditorialCollectionsConnection, graphql_name='editorialCollections', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            EditorialCollectionsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))),
        ('condition', sgqlc.types.Arg(EditorialCollectionCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(EditorialCollectionFilter,
         graphql_name='filter', default=None)),
    ))
    )
    groupings = sgqlc.types.Field(GroupingsConnection, graphql_name='groupings', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            GroupingsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))),
        ('condition', sgqlc.types.Arg(GroupingCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(GroupingFilter,
         graphql_name='filter', default=None)),
    ))
    )
    images_collections_binaries_views = sgqlc.types.Field(ImagesCollectionsBinariesViewsConnection, graphql_name='imagesCollectionsBinariesViews', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            ImagesCollectionsBinariesViewsOrderBy)), graphql_name='orderBy', default=('NATURAL',))),
        ('condition', sgqlc.types.Arg(ImagesCollectionsBinariesViewCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(ImagesCollectionsBinariesViewFilter,
         graphql_name='filter', default=None)),
    ))
    )
    items = sgqlc.types.Field(ItemsConnection, graphql_name='items', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            ItemsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))),
        ('condition', sgqlc.types.Arg(ItemCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(ItemFilter, graphql_name='filter', default=None)),
    ))
    )
    migrations = sgqlc.types.Field(MigrationsConnection, graphql_name='migrations', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            MigrationsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))),
        ('condition', sgqlc.types.Arg(MigrationCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(MigrationFilter,
         graphql_name='filter', default=None)),
    ))
    )
    organizations = sgqlc.types.Field(OrganizationsConnection, graphql_name='organizations', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            OrganizationsOrderBy)), graphql_name='orderBy', default=('ORDER_ASC',))),
        ('condition', sgqlc.types.Arg(OrganizationCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(OrganizationFilter,
         graphql_name='filter', default=None)),
    ))
    )
    permanent_livestreams = sgqlc.types.Field(PermanentLivestreamsConnection, graphql_name='permanentLivestreams', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            PermanentLivestreamsOrderBy)), graphql_name='orderBy', default=('ORDER_ASC',))),
        ('condition', sgqlc.types.Arg(PermanentLivestreamCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(PermanentLivestreamFilter,
         graphql_name='filter', default=None)),
    ))
    )
    program_sets = sgqlc.types.Field(ProgramSetsConnection, graphql_name='programSets', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            ProgramSetsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC',))),
        ('condition', sgqlc.types.Arg(ProgramSetCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(ProgramSetFilter,
         graphql_name='filter', default=None)),
    ))
    )
    publication_services = sgqlc.types.Field(PublicationServicesConnection, graphql_name='publicationServices', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
        ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(
            PublicationServicesOrderBy)), graphql_name='orderBy', default=('ORDER_ASC',))),
        ('condition', sgqlc.types.Arg(PublicationServiceCondition,
         graphql_name='condition', default=None)),
        ('filter', sgqlc.types.Arg(PublicationServiceFilter,
         graphql_name='filter', default=None)),
    ))
    )
    audio_binary = sgqlc.types.Field('AudioBinary', graphql_name='audioBinary', args=sgqlc.types.ArgDict((
        ('id', sgqlc.types.Arg(sgqlc.types.non_null(
            String), graphql_name='id', default=None)),
    ))
    )
    categories_to_program_set = sgqlc.types.Field('CategoriesToProgramSet', graphql_name='categoriesToProgramSet', args=sgqlc.types.ArgDict((
        ('program_set_core_id', sgqlc.types.Arg(sgqlc.types.non_null(
            String), graphql_name='programSetCoreId', default=None)),
        ('category_sophora_id', sgqlc.types.Arg(sgqlc.types.non_null(
            String), graphql_name='categorySophoraId', default=None)),
    ))
    )
    concept = sgqlc.types.Field('Concept', graphql_name='concept', args=sgqlc.types.ArgDict((
        ('item_id', sgqlc.types.Arg(sgqlc.types.non_null(
            Int), graphql_name='itemId', default=None)),
        ('concept_source', sgqlc.types.Arg(sgqlc.types.non_null(
            String), graphql_name='conceptSource', default=None)),
    ))
    )
    config = sgqlc.types.Field('Config', graphql_name='config', args=sgqlc.types.ArgDict((
        ('key', sgqlc.types.Arg(sgqlc.types.non_null(
            String), graphql_name='key', default=None)),
    ))
    )
    editorial_category = sgqlc.types.Field(Board, graphql_name='editorialCategory', args=sgqlc.types.ArgDict((
        ('id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='id', default=None)),
        ('source', sgqlc.types.Arg(SourceSystem, graphql_name='source', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=0)),
        ('limit', sgqlc.types.Arg(Int, graphql_name='limit', default=12)),
    ))
    )
    editorial_category_by_sophora_id = sgqlc.types.Field('EditorialCategory', graphql_name='editorialCategoryBySophoraId', args=sgqlc.types.ArgDict((
        ('sophora_id', sgqlc.types.Arg(sgqlc.types.non_null(
            String), graphql_name='sophoraId', default=None)),
    ))
    )
    editorial_collection = sgqlc.types.Field('EditorialCollection', graphql_name='editorialCollection', args=sgqlc.types.ArgDict((
        ('id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='id', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=0)),
        ('limit', sgqlc.types.Arg(Int, graphql_name='limit', default=12)),
        ('source', sgqlc.types.Arg(SourceSystem, graphql_name='source', default=None)),
    ))
    )
    editorial_collection_by_coremedia_id = sgqlc.types.Field('EditorialCollection', graphql_name='editorialCollectionByCoremediaId', args=sgqlc.types.ArgDict((
        ('coremedia_id', sgqlc.types.Arg(sgqlc.types.non_null(
            String), graphql_name='coremediaId', default=None)),
    ))
    )
    grouping = sgqlc.types.Field('Grouping', graphql_name='grouping', args=sgqlc.types.ArgDict((
        ('id', sgqlc.types.Arg(sgqlc.types.non_null(
            String), graphql_name='id', default=None)),
    ))
    )
    grouping_by_core_id = sgqlc.types.Field('Grouping', graphql_name='groupingByCoreId', args=sgqlc.types.ArgDict((
        ('core_id', sgqlc.types.Arg(sgqlc.types.non_null(
            String), graphql_name='coreId', default=None)),
    ))
    )
    image_binary = sgqlc.types.Field('ImageBinary', graphql_name='imageBinary', args=sgqlc.types.ArgDict((
        ('id', sgqlc.types.Arg(sgqlc.types.non_null(
            String), graphql_name='id', default=None)),
    ))
    )
    image_collection = sgqlc.types.Field('ImageCollection', graphql_name='imageCollection', args=sgqlc.types.ArgDict((
        ('id', sgqlc.types.Arg(sgqlc.types.non_null(
            String), graphql_name='id', default=None)),
    ))
    )
    image = sgqlc.types.Field('Image', graphql_name='image', args=sgqlc.types.ArgDict((
        ('id', sgqlc.types.Arg(sgqlc.types.non_null(
            String), graphql_name='id', default=None)),
    ))
    )
    item = sgqlc.types.Field('Item', graphql_name='item', args=sgqlc.types.ArgDict((
        ('id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='id', default=None)),
    ))
    )
    item_by_core_id = sgqlc.types.Field('Item', graphql_name='itemByCoreId', args=sgqlc.types.ArgDict((
        ('core_id', sgqlc.types.Arg(sgqlc.types.non_null(
            String), graphql_name='coreId', default=None)),
    ))
    )
    item_by_external_id = sgqlc.types.Field('Item', graphql_name='itemByExternalId', args=sgqlc.types.ArgDict((
        ('external_id', sgqlc.types.Arg(sgqlc.types.non_null(
            String), graphql_name='externalId', default=None)),
    ))
    )
    migration = sgqlc.types.Field('Migration', graphql_name='migration', args=sgqlc.types.ArgDict((
        ('id', sgqlc.types.Arg(sgqlc.types.non_null(
            Int), graphql_name='id', default=None)),
    ))
    )
    migration_by_name = sgqlc.types.Field('Migration', graphql_name='migrationByName', args=sgqlc.types.ArgDict((
        ('name', sgqlc.types.Arg(sgqlc.types.non_null(
            String), graphql_name='name', default=None)),
    ))
    )
    organization_by_id = sgqlc.types.Field('Organization', graphql_name='organizationById', args=sgqlc.types.ArgDict((
        ('id', sgqlc.types.Arg(sgqlc.types.non_null(
            Int), graphql_name='id', default=None)),
    ))
    )
    organization = sgqlc.types.Field('Organization', graphql_name='organization', args=sgqlc.types.ArgDict((
        ('id', sgqlc.types.Arg(ID, graphql_name='id', default=None)),
        ('name', sgqlc.types.Arg(String, graphql_name='name', default=None)),
    ))
    )
    organization_by_core_id = sgqlc.types.Field('Organization', graphql_name='organizationByCoreId', args=sgqlc.types.ArgDict((
        ('core_id', sgqlc.types.Arg(sgqlc.types.non_null(
            String), graphql_name='coreId', default=None)),
    ))
    )
    permanent_livestream = sgqlc.types.Field('PermanentLivestream', graphql_name='permanentLivestream', args=sgqlc.types.ArgDict((
        ('id', sgqlc.types.Arg(sgqlc.types.non_null(
            String), graphql_name='id', default=None)),
    ))
    )
    permanent_livestream_by_core_id = sgqlc.types.Field('PermanentLivestream', graphql_name='permanentLivestreamByCoreId', args=sgqlc.types.ArgDict((
        ('core_id', sgqlc.types.Arg(sgqlc.types.non_null(
            String), graphql_name='coreId', default=None)),
    ))
    )
    program_set = sgqlc.types.Field('ProgramSet', graphql_name='programSet', args=sgqlc.types.ArgDict((
        ('id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='id', default=None)),
    ))
    )
    program_set_by_core_id = sgqlc.types.Field('ProgramSet', graphql_name='programSetByCoreId', args=sgqlc.types.ArgDict((
        ('core_id', sgqlc.types.Arg(sgqlc.types.non_null(
            String), graphql_name='coreId', default=None)),
    ))
    )
    publication_service = sgqlc.types.Field('PublicationService', graphql_name='publicationService', args=sgqlc.types.ArgDict((
        ('id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='id', default=None)),
        ('source', sgqlc.types.Arg(SourceSystem, graphql_name='source', default=None)),
    ))
    )
    publication_service_by_title = sgqlc.types.Field('PublicationService', graphql_name='publicationServiceByTitle', args=sgqlc.types.ArgDict((
        ('title', sgqlc.types.Arg(sgqlc.types.non_null(
            String), graphql_name='title', default=None)),
    ))
    )
    publication_service_by_core_id = sgqlc.types.Field('PublicationService', graphql_name='publicationServiceByCoreId', args=sgqlc.types.ArgDict((
        ('core_id', sgqlc.types.Arg(sgqlc.types.non_null(
            String), graphql_name='coreId', default=None)),
    ))
    )
    transcript = sgqlc.types.Field('Transcript', graphql_name='transcript', args=sgqlc.types.ArgDict((
        ('item_id', sgqlc.types.Arg(sgqlc.types.non_null(
            Int), graphql_name='itemId', default=None)),
    ))
    )
    debug_show_groups = sgqlc.types.Field(DebugShowGroupsConnection, graphql_name='debugShowGroups', args=sgqlc.types.ArgDict((
        ('show_id', sgqlc.types.Arg(Int, graphql_name='showId', default=None)),
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
    ))
    )
    editorial_categories_by_ids = sgqlc.types.Field(EditorialCategoriesConnection, graphql_name='editorialCategoriesByIds', args=sgqlc.types.ArgDict((
        ('ids', sgqlc.types.Arg(sgqlc.types.list_of(
            String), graphql_name='ids', default=None)),
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
    ))
    )
    editorial_categories_by_ids_list = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EditorialCategory')), graphql_name='editorialCategoriesByIdsList', args=sgqlc.types.ArgDict((
        ('ids', sgqlc.types.Arg(sgqlc.types.list_of(
            String), graphql_name='ids', default=None)),
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
    ))
    )
    editorial_collections_by_ids = sgqlc.types.Field(EditorialCollectionsConnection, graphql_name='editorialCollectionsByIds', args=sgqlc.types.ArgDict((
        ('ids', sgqlc.types.Arg(sgqlc.types.list_of(
            String), graphql_name='ids', default=None)),
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
    ))
    )
    editorial_collections_by_ids_list = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EditorialCollection')), graphql_name='editorialCollectionsByIdsList', args=sgqlc.types.ArgDict((
        ('ids', sgqlc.types.Arg(sgqlc.types.list_of(
            String), graphql_name='ids', default=None)),
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
    ))
    )
    isnumeric = sgqlc.types.Field(Boolean, graphql_name='isnumeric', args=sgqlc.types.ArgDict((
        ('arg0', sgqlc.types.Arg(sgqlc.types.non_null(
            String), graphql_name='arg0', default=None)),
    ))
    )
    items_by_ids = sgqlc.types.Field(ItemsConnection, graphql_name='itemsByIds', args=sgqlc.types.ArgDict((
        ('ids', sgqlc.types.Arg(sgqlc.types.list_of(
            String), graphql_name='ids', default=None)),
        ('is_published', sgqlc.types.Arg(
            Boolean, graphql_name='isPublished', default=None)),
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
    ))
    )
    items_by_ids_list = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('Item')), graphql_name='itemsByIdsList', args=sgqlc.types.ArgDict((
        ('ids', sgqlc.types.Arg(sgqlc.types.list_of(
            String), graphql_name='ids', default=None)),
        ('is_published', sgqlc.types.Arg(
            Boolean, graphql_name='isPublished', default=None)),
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
    ))
    )
    jsonb_array = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='jsonbArray', args=sgqlc.types.ArgDict((
        ('arg0', sgqlc.types.Arg(JSON, graphql_name='arg0', default=None)),
    ))
    )
    program_sets_by_ids = sgqlc.types.Field(ProgramSetsConnection, graphql_name='programSetsByIds', args=sgqlc.types.ArgDict((
        ('ids', sgqlc.types.Arg(sgqlc.types.list_of(
            String), graphql_name='ids', default=None)),
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
    ))
    )
    program_sets_by_ids_list = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ProgramSet')), graphql_name='programSetsByIdsList', args=sgqlc.types.ArgDict((
        ('ids', sgqlc.types.Arg(sgqlc.types.list_of(
            String), graphql_name='ids', default=None)),
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
    ))
    )
    shows_with_mapping = sgqlc.types.Field(ProgramSetsConnection, graphql_name='showsWithMapping', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
        ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)),
        ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)),
    ))
    )
    shows_with_mapping_list = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ProgramSet')), graphql_name='showsWithMappingList', args=sgqlc.types.ArgDict((
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)),
    ))
    )
    audio_binary_by_node_id = sgqlc.types.Field('AudioBinary', graphql_name='audioBinaryByNodeId', args=sgqlc.types.ArgDict((
        ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='nodeId', default=None)),
    ))
    )
    categories_to_program_set_by_node_id = sgqlc.types.Field('CategoriesToProgramSet', graphql_name='categoriesToProgramSetByNodeId', args=sgqlc.types.ArgDict((
        ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='nodeId', default=None)),
    ))
    )
    concept_by_node_id = sgqlc.types.Field('Concept', graphql_name='conceptByNodeId', args=sgqlc.types.ArgDict((
        ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='nodeId', default=None)),
    ))
    )
    config_by_node_id = sgqlc.types.Field('Config', graphql_name='configByNodeId', args=sgqlc.types.ArgDict((
        ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='nodeId', default=None)),
    ))
    )
    editorial_category_by_node_id = sgqlc.types.Field('EditorialCategory', graphql_name='editorialCategoryByNodeId', args=sgqlc.types.ArgDict((
        ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='nodeId', default=None)),
    ))
    )
    editorial_collection_by_node_id = sgqlc.types.Field('EditorialCollection', graphql_name='editorialCollectionByNodeId', args=sgqlc.types.ArgDict((
        ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='nodeId', default=None)),
    ))
    )
    grouping_by_node_id = sgqlc.types.Field('Grouping', graphql_name='groupingByNodeId', args=sgqlc.types.ArgDict((
        ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='nodeId', default=None)),
    ))
    )
    image_binary_by_node_id = sgqlc.types.Field('ImageBinary', graphql_name='imageBinaryByNodeId', args=sgqlc.types.ArgDict((
        ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='nodeId', default=None)),
    ))
    )
    image_collection_by_node_id = sgqlc.types.Field('ImageCollection', graphql_name='imageCollectionByNodeId', args=sgqlc.types.ArgDict((
        ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='nodeId', default=None)),
    ))
    )
    image_by_node_id = sgqlc.types.Field('Image', graphql_name='imageByNodeId', args=sgqlc.types.ArgDict((
        ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='nodeId', default=None)),
    ))
    )
    item_by_node_id = sgqlc.types.Field('Item', graphql_name='itemByNodeId', args=sgqlc.types.ArgDict((
        ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='nodeId', default=None)),
    ))
    )
    migration_by_node_id = sgqlc.types.Field('Migration', graphql_name='migrationByNodeId', args=sgqlc.types.ArgDict((
        ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='nodeId', default=None)),
    ))
    )
    organization_by_node_id = sgqlc.types.Field('Organization', graphql_name='organizationByNodeId', args=sgqlc.types.ArgDict((
        ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='nodeId', default=None)),
    ))
    )
    permanent_livestream_by_node_id = sgqlc.types.Field('PermanentLivestream', graphql_name='permanentLivestreamByNodeId', args=sgqlc.types.ArgDict((
        ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='nodeId', default=None)),
    ))
    )
    program_set_by_node_id = sgqlc.types.Field('ProgramSet', graphql_name='programSetByNodeId', args=sgqlc.types.ArgDict((
        ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='nodeId', default=None)),
    ))
    )
    publication_service_by_node_id = sgqlc.types.Field('PublicationService', graphql_name='publicationServiceByNodeId', args=sgqlc.types.ArgDict((
        ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='nodeId', default=None)),
    ))
    )
    transcript_by_node_id = sgqlc.types.Field('Transcript', graphql_name='transcriptByNodeId', args=sgqlc.types.ArgDict((
        ('node_id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='nodeId', default=None)),
    ))
    )
    search = sgqlc.types.Field('SearchResult', graphql_name='search', args=sgqlc.types.ArgDict((
        ('query', sgqlc.types.Arg(String, graphql_name='query', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=0)),
        ('limit', sgqlc.types.Arg(Int, graphql_name='limit', default=24)),
        ('type', sgqlc.types.Arg(SearchType, graphql_name='type', default='All')),
        ('source', sgqlc.types.Arg(SourceSystem, graphql_name='source', default=None)),
    ))
    )
    homescreen = sgqlc.types.Field(Board, graphql_name='homescreen', args=sgqlc.types.ArgDict((
        ('id', sgqlc.types.Arg(ID, graphql_name='id', default=None)),
        ('source', sgqlc.types.Arg(SourceSystem, graphql_name='source', default=None)),
        ('limit', sgqlc.types.Arg(Int, graphql_name='limit', default=None)),
    ))
    )
    show = sgqlc.types.Field('ProgramSet', graphql_name='show', args=sgqlc.types.ArgDict((
        ('id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='id', default=None)),
    ))
    )
    section = sgqlc.types.Field('Section', graphql_name='section', args=sgqlc.types.ArgDict((
        ('id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='id', default=None)),
    ))
    )
    widget = sgqlc.types.Field('SophoraWidget', graphql_name='widget', args=sgqlc.types.ArgDict((
        ('id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='id', default=None)),
    ))
    )
    widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SophoraWidget')), graphql_name='widgets', args=sgqlc.types.ArgDict((
        ('ids', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(
            sgqlc.types.non_null(ID))), graphql_name='ids', default=None)),
    ))
    )
    compilations = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SophoraCompilation')), graphql_name='compilations', args=sgqlc.types.ArgDict((
        ('ids', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(
            sgqlc.types.non_null(ID))), graphql_name='ids', default=None)),
    ))
    )
    teasers = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SophoraTeaser')), graphql_name='teasers', args=sgqlc.types.ArgDict((
        ('ids', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(
            sgqlc.types.non_null(ID))), graphql_name='ids', default=None)),
    ))
    )
    node = sgqlc.types.Field(Node, graphql_name='node', args=sgqlc.types.ArgDict((
        ('id', sgqlc.types.Arg(sgqlc.types.non_null(
            ID), graphql_name='id', default=None)),
    ))
    )

__field_names__ = ('all_end_users', 'all_playlists', 'bookmark', 'bookmark_list', 'end_user', 'history_entry', 'playlist', 'program_set_subscription', 'system', 'configs', 'editorial_categories', 'editorial_collections', 'groupings', 'images_collections_binaries_views', 'items', 'migrations', 'organizations', 'permanent_livestreams', 'program_sets', 'publication_services', 'audio_binary', 'categories_to_program_set', 'concept', 'config', 'editorial_category', 'editorial_category_by_sophora_id', 'editorial_collection', 'editorial_collection_by_coremedia_id', 'grouping', 'grouping_by_core_id', 'image_binary', 'image_collection', 'image', 'item', 'item_by_core_id', 'item_by_external_id', 'migration', 'migration_by_name', 'organization_by_id', 'organization', 'organization_by_core_id', 'permanent_livestream', 'permanent_livestream_by_core_id', 'program_set', 'program_set_by_core_id', 'publication_service', 'publication_service_by_title', 'publication_service_by_core_id', 'transcript', 'debug_show_groups', 'editorial_categories_by_ids', 'editorial_categories_by_ids_list', 'editorial_collections_by_ids', 'editorial_collections_by_ids_list', 'isnumeric', 'items_by_ids', 'items_by_ids_list', 'jsonb_array', 'program_sets_by_ids', 'program_sets_by_ids_list', 'shows_with_mapping', 'shows_with_mapping_list', 'audio_binary_by_node_id', 'categories_to_program_set_by_node_id', 'concept_by_node_id', 'config_by_node_id', 'editorial_category_by_node_id', 'editorial_collection_by_node_id', 'grouping_by_node_id', 'image_binary_by_node_id', 'image_collection_by_node_id', 'image_by_node_id', 'item_by_node_id', 'migration_by_node_id', 'organization_by_node_id', 'permanent_livestream_by_node_id', 'program_set_by_node_id', 'publication_service_by_node_id', 'transcript_by_node_id', 'search', 'homescreen', 'show', 'section', 'widget', 'widgets', 'compilations', 'teasers', 'node') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

all_end_users = sgqlc.types.Field(EndUserConnection, graphql_name='allEndUsers', args=sgqlc.types.ArgDict((('after', sgqlc.types.Arg(String, graphql_name='after', default=None)), ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('before', sgqlc.types.Arg(String, graphql_name='before', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('filter', sgqlc.types.Arg(EndUserFilterB, graphql_name='filter', default=None)), ('order_by', sgqlc.types.Arg(EndUserSortOrder, graphql_name='orderBy', default=None))))) class-attribute instance-attribute

all_playlists = sgqlc.types.Field(PlaylistConnection, graphql_name='allPlaylists', args=sgqlc.types.ArgDict((('after', sgqlc.types.Arg(String, graphql_name='after', default=None)), ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('before', sgqlc.types.Arg(String, graphql_name='before', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('filter', sgqlc.types.Arg(PlaylistFilterB, graphql_name='filter', default=None)), ('order_by', sgqlc.types.Arg(PlaylistSortOrder, graphql_name='orderBy', default=None))))) class-attribute instance-attribute

audio_binary = sgqlc.types.Field('AudioBinary', graphql_name='audioBinary', args=sgqlc.types.ArgDict((('id', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='id', default=None))))) class-attribute instance-attribute

audio_binary_by_node_id = sgqlc.types.Field('AudioBinary', graphql_name='audioBinaryByNodeId', args=sgqlc.types.ArgDict((('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None))))) class-attribute instance-attribute

bookmark = sgqlc.types.Field(BookmarkInterface, graphql_name='bookmark', args=sgqlc.types.ArgDict((('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None))))) class-attribute instance-attribute

bookmark_list = sgqlc.types.Field(BookmarkListInterface, graphql_name='bookmarkList', args=sgqlc.types.ArgDict((('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None))))) class-attribute instance-attribute

categories_to_program_set = sgqlc.types.Field('CategoriesToProgramSet', graphql_name='categoriesToProgramSet', args=sgqlc.types.ArgDict((('program_set_core_id', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='programSetCoreId', default=None)), ('category_sophora_id', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='categorySophoraId', default=None))))) class-attribute instance-attribute

categories_to_program_set_by_node_id = sgqlc.types.Field('CategoriesToProgramSet', graphql_name='categoriesToProgramSetByNodeId', args=sgqlc.types.ArgDict((('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None))))) class-attribute instance-attribute

compilations = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SophoraCompilation')), graphql_name='compilations', args=sgqlc.types.ArgDict((('ids', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(ID))), graphql_name='ids', default=None))))) class-attribute instance-attribute

concept = sgqlc.types.Field('Concept', graphql_name='concept', args=sgqlc.types.ArgDict((('item_id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='itemId', default=None)), ('concept_source', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='conceptSource', default=None))))) class-attribute instance-attribute

concept_by_node_id = sgqlc.types.Field('Concept', graphql_name='conceptByNodeId', args=sgqlc.types.ArgDict((('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None))))) class-attribute instance-attribute

config = sgqlc.types.Field('Config', graphql_name='config', args=sgqlc.types.ArgDict((('key', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='key', default=None))))) class-attribute instance-attribute

config_by_node_id = sgqlc.types.Field('Config', graphql_name='configByNodeId', args=sgqlc.types.ArgDict((('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None))))) class-attribute instance-attribute

configs = sgqlc.types.Field(ConfigsConnection, graphql_name='configs', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ConfigsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC'))), ('condition', sgqlc.types.Arg(ConfigCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(ConfigFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

debug_show_groups = sgqlc.types.Field(DebugShowGroupsConnection, graphql_name='debugShowGroups', args=sgqlc.types.ArgDict((('show_id', sgqlc.types.Arg(Int, graphql_name='showId', default=None)), ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None))))) class-attribute instance-attribute

editorial_categories = sgqlc.types.Field(EditorialCategoriesConnection, graphql_name='editorialCategories', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(EditorialCategoriesOrderBy)), graphql_name='orderBy', default=('ORDER_ASC'))), ('condition', sgqlc.types.Arg(EditorialCategoryCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(EditorialCategoryFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

editorial_categories_by_ids = sgqlc.types.Field(EditorialCategoriesConnection, graphql_name='editorialCategoriesByIds', args=sgqlc.types.ArgDict((('ids', sgqlc.types.Arg(sgqlc.types.list_of(String), graphql_name='ids', default=None)), ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None))))) class-attribute instance-attribute

editorial_categories_by_ids_list = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EditorialCategory')), graphql_name='editorialCategoriesByIdsList', args=sgqlc.types.ArgDict((('ids', sgqlc.types.Arg(sgqlc.types.list_of(String), graphql_name='ids', default=None)), ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None))))) class-attribute instance-attribute

editorial_category = sgqlc.types.Field(Board, graphql_name='editorialCategory', args=sgqlc.types.ArgDict((('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None)), ('source', sgqlc.types.Arg(SourceSystem, graphql_name='source', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=0)), ('limit', sgqlc.types.Arg(Int, graphql_name='limit', default=12))))) class-attribute instance-attribute

editorial_category_by_node_id = sgqlc.types.Field('EditorialCategory', graphql_name='editorialCategoryByNodeId', args=sgqlc.types.ArgDict((('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None))))) class-attribute instance-attribute

editorial_category_by_sophora_id = sgqlc.types.Field('EditorialCategory', graphql_name='editorialCategoryBySophoraId', args=sgqlc.types.ArgDict((('sophora_id', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='sophoraId', default=None))))) class-attribute instance-attribute

editorial_collection = sgqlc.types.Field('EditorialCollection', graphql_name='editorialCollection', args=sgqlc.types.ArgDict((('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=0)), ('limit', sgqlc.types.Arg(Int, graphql_name='limit', default=12)), ('source', sgqlc.types.Arg(SourceSystem, graphql_name='source', default=None))))) class-attribute instance-attribute

editorial_collection_by_coremedia_id = sgqlc.types.Field('EditorialCollection', graphql_name='editorialCollectionByCoremediaId', args=sgqlc.types.ArgDict((('coremedia_id', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='coremediaId', default=None))))) class-attribute instance-attribute

editorial_collection_by_node_id = sgqlc.types.Field('EditorialCollection', graphql_name='editorialCollectionByNodeId', args=sgqlc.types.ArgDict((('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None))))) class-attribute instance-attribute

editorial_collections = sgqlc.types.Field(EditorialCollectionsConnection, graphql_name='editorialCollections', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(EditorialCollectionsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC'))), ('condition', sgqlc.types.Arg(EditorialCollectionCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(EditorialCollectionFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

editorial_collections_by_ids = sgqlc.types.Field(EditorialCollectionsConnection, graphql_name='editorialCollectionsByIds', args=sgqlc.types.ArgDict((('ids', sgqlc.types.Arg(sgqlc.types.list_of(String), graphql_name='ids', default=None)), ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None))))) class-attribute instance-attribute

editorial_collections_by_ids_list = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EditorialCollection')), graphql_name='editorialCollectionsByIdsList', args=sgqlc.types.ArgDict((('ids', sgqlc.types.Arg(sgqlc.types.list_of(String), graphql_name='ids', default=None)), ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None))))) class-attribute instance-attribute

end_user = sgqlc.types.Field(EndUserInterface, graphql_name='endUser', args=sgqlc.types.ArgDict((('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None))))) class-attribute instance-attribute

grouping = sgqlc.types.Field('Grouping', graphql_name='grouping', args=sgqlc.types.ArgDict((('id', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='id', default=None))))) class-attribute instance-attribute

grouping_by_core_id = sgqlc.types.Field('Grouping', graphql_name='groupingByCoreId', args=sgqlc.types.ArgDict((('core_id', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='coreId', default=None))))) class-attribute instance-attribute

grouping_by_node_id = sgqlc.types.Field('Grouping', graphql_name='groupingByNodeId', args=sgqlc.types.ArgDict((('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None))))) class-attribute instance-attribute

groupings = sgqlc.types.Field(GroupingsConnection, graphql_name='groupings', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(GroupingsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC'))), ('condition', sgqlc.types.Arg(GroupingCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(GroupingFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

history_entry = sgqlc.types.Field(HistoryEntryInterface, graphql_name='historyEntry', args=sgqlc.types.ArgDict((('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None))))) class-attribute instance-attribute

homescreen = sgqlc.types.Field(Board, graphql_name='homescreen', args=sgqlc.types.ArgDict((('id', sgqlc.types.Arg(ID, graphql_name='id', default=None)), ('source', sgqlc.types.Arg(SourceSystem, graphql_name='source', default=None)), ('limit', sgqlc.types.Arg(Int, graphql_name='limit', default=None))))) class-attribute instance-attribute

image = sgqlc.types.Field('Image', graphql_name='image', args=sgqlc.types.ArgDict((('id', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='id', default=None))))) class-attribute instance-attribute

image_binary = sgqlc.types.Field('ImageBinary', graphql_name='imageBinary', args=sgqlc.types.ArgDict((('id', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='id', default=None))))) class-attribute instance-attribute

image_binary_by_node_id = sgqlc.types.Field('ImageBinary', graphql_name='imageBinaryByNodeId', args=sgqlc.types.ArgDict((('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None))))) class-attribute instance-attribute

image_by_node_id = sgqlc.types.Field('Image', graphql_name='imageByNodeId', args=sgqlc.types.ArgDict((('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None))))) class-attribute instance-attribute

image_collection = sgqlc.types.Field('ImageCollection', graphql_name='imageCollection', args=sgqlc.types.ArgDict((('id', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='id', default=None))))) class-attribute instance-attribute

image_collection_by_node_id = sgqlc.types.Field('ImageCollection', graphql_name='imageCollectionByNodeId', args=sgqlc.types.ArgDict((('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None))))) class-attribute instance-attribute

images_collections_binaries_views = sgqlc.types.Field(ImagesCollectionsBinariesViewsConnection, graphql_name='imagesCollectionsBinariesViews', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ImagesCollectionsBinariesViewsOrderBy)), graphql_name='orderBy', default=('NATURAL'))), ('condition', sgqlc.types.Arg(ImagesCollectionsBinariesViewCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(ImagesCollectionsBinariesViewFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

isnumeric = sgqlc.types.Field(Boolean, graphql_name='isnumeric', args=sgqlc.types.ArgDict((('arg0', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='arg0', default=None))))) class-attribute instance-attribute

item = sgqlc.types.Field('Item', graphql_name='item', args=sgqlc.types.ArgDict((('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None))))) class-attribute instance-attribute

item_by_core_id = sgqlc.types.Field('Item', graphql_name='itemByCoreId', args=sgqlc.types.ArgDict((('core_id', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='coreId', default=None))))) class-attribute instance-attribute

item_by_external_id = sgqlc.types.Field('Item', graphql_name='itemByExternalId', args=sgqlc.types.ArgDict((('external_id', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='externalId', default=None))))) class-attribute instance-attribute

item_by_node_id = sgqlc.types.Field('Item', graphql_name='itemByNodeId', args=sgqlc.types.ArgDict((('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None))))) class-attribute instance-attribute

items = sgqlc.types.Field(ItemsConnection, graphql_name='items', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ItemsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC'))), ('condition', sgqlc.types.Arg(ItemCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(ItemFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

items_by_ids = sgqlc.types.Field(ItemsConnection, graphql_name='itemsByIds', args=sgqlc.types.ArgDict((('ids', sgqlc.types.Arg(sgqlc.types.list_of(String), graphql_name='ids', default=None)), ('is_published', sgqlc.types.Arg(Boolean, graphql_name='isPublished', default=None)), ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None))))) class-attribute instance-attribute

items_by_ids_list = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('Item')), graphql_name='itemsByIdsList', args=sgqlc.types.ArgDict((('ids', sgqlc.types.Arg(sgqlc.types.list_of(String), graphql_name='ids', default=None)), ('is_published', sgqlc.types.Arg(Boolean, graphql_name='isPublished', default=None)), ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None))))) class-attribute instance-attribute

jsonb_array = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='jsonbArray', args=sgqlc.types.ArgDict((('arg0', sgqlc.types.Arg(JSON, graphql_name='arg0', default=None))))) class-attribute instance-attribute

migration = sgqlc.types.Field('Migration', graphql_name='migration', args=sgqlc.types.ArgDict((('id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='id', default=None))))) class-attribute instance-attribute

migration_by_name = sgqlc.types.Field('Migration', graphql_name='migrationByName', args=sgqlc.types.ArgDict((('name', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='name', default=None))))) class-attribute instance-attribute

migration_by_node_id = sgqlc.types.Field('Migration', graphql_name='migrationByNodeId', args=sgqlc.types.ArgDict((('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None))))) class-attribute instance-attribute

migrations = sgqlc.types.Field(MigrationsConnection, graphql_name='migrations', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(MigrationsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC'))), ('condition', sgqlc.types.Arg(MigrationCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(MigrationFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

node = sgqlc.types.Field(Node, graphql_name='node', args=sgqlc.types.ArgDict((('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None))))) class-attribute instance-attribute

organization = sgqlc.types.Field('Organization', graphql_name='organization', args=sgqlc.types.ArgDict((('id', sgqlc.types.Arg(ID, graphql_name='id', default=None)), ('name', sgqlc.types.Arg(String, graphql_name='name', default=None))))) class-attribute instance-attribute

organization_by_core_id = sgqlc.types.Field('Organization', graphql_name='organizationByCoreId', args=sgqlc.types.ArgDict((('core_id', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='coreId', default=None))))) class-attribute instance-attribute

organization_by_id = sgqlc.types.Field('Organization', graphql_name='organizationById', args=sgqlc.types.ArgDict((('id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='id', default=None))))) class-attribute instance-attribute

organization_by_node_id = sgqlc.types.Field('Organization', graphql_name='organizationByNodeId', args=sgqlc.types.ArgDict((('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None))))) class-attribute instance-attribute

organizations = sgqlc.types.Field(OrganizationsConnection, graphql_name='organizations', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(OrganizationsOrderBy)), graphql_name='orderBy', default=('ORDER_ASC'))), ('condition', sgqlc.types.Arg(OrganizationCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(OrganizationFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

permanent_livestream = sgqlc.types.Field('PermanentLivestream', graphql_name='permanentLivestream', args=sgqlc.types.ArgDict((('id', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='id', default=None))))) class-attribute instance-attribute

permanent_livestream_by_core_id = sgqlc.types.Field('PermanentLivestream', graphql_name='permanentLivestreamByCoreId', args=sgqlc.types.ArgDict((('core_id', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='coreId', default=None))))) class-attribute instance-attribute

permanent_livestream_by_node_id = sgqlc.types.Field('PermanentLivestream', graphql_name='permanentLivestreamByNodeId', args=sgqlc.types.ArgDict((('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None))))) class-attribute instance-attribute

permanent_livestreams = sgqlc.types.Field(PermanentLivestreamsConnection, graphql_name='permanentLivestreams', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(PermanentLivestreamsOrderBy)), graphql_name='orderBy', default=('ORDER_ASC'))), ('condition', sgqlc.types.Arg(PermanentLivestreamCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(PermanentLivestreamFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

playlist = sgqlc.types.Field(PlaylistInterface, graphql_name='playlist', args=sgqlc.types.ArgDict((('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None))))) class-attribute instance-attribute

program_set = sgqlc.types.Field('ProgramSet', graphql_name='programSet', args=sgqlc.types.ArgDict((('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None))))) class-attribute instance-attribute

program_set_by_core_id = sgqlc.types.Field('ProgramSet', graphql_name='programSetByCoreId', args=sgqlc.types.ArgDict((('core_id', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='coreId', default=None))))) class-attribute instance-attribute

program_set_by_node_id = sgqlc.types.Field('ProgramSet', graphql_name='programSetByNodeId', args=sgqlc.types.ArgDict((('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None))))) class-attribute instance-attribute

program_set_subscription = sgqlc.types.Field(ProgramSetSubscriptionInterface, graphql_name='programSetSubscription', args=sgqlc.types.ArgDict((('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None))))) class-attribute instance-attribute

program_sets = sgqlc.types.Field(ProgramSetsConnection, graphql_name='programSets', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(ProgramSetsOrderBy)), graphql_name='orderBy', default=('PRIMARY_KEY_ASC'))), ('condition', sgqlc.types.Arg(ProgramSetCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(ProgramSetFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

program_sets_by_ids = sgqlc.types.Field(ProgramSetsConnection, graphql_name='programSetsByIds', args=sgqlc.types.ArgDict((('ids', sgqlc.types.Arg(sgqlc.types.list_of(String), graphql_name='ids', default=None)), ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None))))) class-attribute instance-attribute

program_sets_by_ids_list = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ProgramSet')), graphql_name='programSetsByIdsList', args=sgqlc.types.ArgDict((('ids', sgqlc.types.Arg(sgqlc.types.list_of(String), graphql_name='ids', default=None)), ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None))))) class-attribute instance-attribute

publication_service = sgqlc.types.Field('PublicationService', graphql_name='publicationService', args=sgqlc.types.ArgDict((('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None)), ('source', sgqlc.types.Arg(SourceSystem, graphql_name='source', default=None))))) class-attribute instance-attribute

publication_service_by_core_id = sgqlc.types.Field('PublicationService', graphql_name='publicationServiceByCoreId', args=sgqlc.types.ArgDict((('core_id', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='coreId', default=None))))) class-attribute instance-attribute

publication_service_by_node_id = sgqlc.types.Field('PublicationService', graphql_name='publicationServiceByNodeId', args=sgqlc.types.ArgDict((('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None))))) class-attribute instance-attribute

publication_service_by_title = sgqlc.types.Field('PublicationService', graphql_name='publicationServiceByTitle', args=sgqlc.types.ArgDict((('title', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='title', default=None))))) class-attribute instance-attribute

publication_services = sgqlc.types.Field(PublicationServicesConnection, graphql_name='publicationServices', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None)), ('order_by', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(PublicationServicesOrderBy)), graphql_name='orderBy', default=('ORDER_ASC'))), ('condition', sgqlc.types.Arg(PublicationServiceCondition, graphql_name='condition', default=None)), ('filter', sgqlc.types.Arg(PublicationServiceFilter, graphql_name='filter', default=None))))) class-attribute instance-attribute

search = sgqlc.types.Field('SearchResult', graphql_name='search', args=sgqlc.types.ArgDict((('query', sgqlc.types.Arg(String, graphql_name='query', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=0)), ('limit', sgqlc.types.Arg(Int, graphql_name='limit', default=24)), ('type', sgqlc.types.Arg(SearchType, graphql_name='type', default='All')), ('source', sgqlc.types.Arg(SourceSystem, graphql_name='source', default=None))))) class-attribute instance-attribute

section = sgqlc.types.Field('Section', graphql_name='section', args=sgqlc.types.ArgDict((('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None))))) class-attribute instance-attribute

show = sgqlc.types.Field('ProgramSet', graphql_name='show', args=sgqlc.types.ArgDict((('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None))))) class-attribute instance-attribute

shows_with_mapping = sgqlc.types.Field(ProgramSetsConnection, graphql_name='showsWithMapping', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None)), ('before', sgqlc.types.Arg(Cursor, graphql_name='before', default=None)), ('after', sgqlc.types.Arg(Cursor, graphql_name='after', default=None))))) class-attribute instance-attribute

shows_with_mapping_list = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('ProgramSet')), graphql_name='showsWithMappingList', args=sgqlc.types.ArgDict((('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=None))))) class-attribute instance-attribute

system = sgqlc.types.Field('SystemInterface', graphql_name='system', args=sgqlc.types.ArgDict((('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None))))) class-attribute instance-attribute

teasers = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SophoraTeaser')), graphql_name='teasers', args=sgqlc.types.ArgDict((('ids', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(ID))), graphql_name='ids', default=None))))) class-attribute instance-attribute

transcript = sgqlc.types.Field('Transcript', graphql_name='transcript', args=sgqlc.types.ArgDict((('item_id', sgqlc.types.Arg(sgqlc.types.non_null(Int), graphql_name='itemId', default=None))))) class-attribute instance-attribute

transcript_by_node_id = sgqlc.types.Field('Transcript', graphql_name='transcriptByNodeId', args=sgqlc.types.ArgDict((('node_id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='nodeId', default=None))))) class-attribute instance-attribute

widget = sgqlc.types.Field('SophoraWidget', graphql_name='widget', args=sgqlc.types.ArgDict((('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None))))) class-attribute instance-attribute

widgets = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SophoraWidget')), graphql_name='widgets', args=sgqlc.types.ArgDict((('ids', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(ID))), graphql_name='ids', default=None))))) class-attribute instance-attribute

Queue

Bases: sgqlc.types.Type, QueueInterface

Source code in src/libaudiothek/audiothek_schema.py
4751
4752
4753
class Queue(sgqlc.types.Type, QueueInterface):
    __schema__ = audiothek_schema
    __field_names__ = ()

__field_names__ = () class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

QueueConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
class QueueConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('count', 'edges', 'nodes', 'page_info')
    count = sgqlc.types.Field(Int, graphql_name='count')
    edges = sgqlc.types.Field(sgqlc.types.list_of(
        'QueueEdge'), graphql_name='edges')
    nodes = sgqlc.types.Field(sgqlc.types.list_of(
        'QueueInterface'), graphql_name='nodes')
    page_info = sgqlc.types.Field(
        sgqlc.types.non_null(PageInfo), graphql_name='pageInfo')

__field_names__ = ('count', 'edges', 'nodes', 'page_info') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

count = sgqlc.types.Field(Int, graphql_name='count') class-attribute instance-attribute

edges = sgqlc.types.Field(sgqlc.types.list_of('QueueEdge'), graphql_name='edges') class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.list_of('QueueInterface'), graphql_name='nodes') class-attribute instance-attribute

page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') class-attribute instance-attribute

QueueConnectionFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1640
1641
1642
1643
1644
class QueueConnectionFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('empty', 'contains')
    empty = sgqlc.types.Field(BooleanFilterB, graphql_name='empty')
    contains = sgqlc.types.Field(ID, graphql_name='contains')

__field_names__ = ('empty', 'contains') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

contains = sgqlc.types.Field(ID, graphql_name='contains') class-attribute instance-attribute

empty = sgqlc.types.Field(BooleanFilterB, graphql_name='empty') class-attribute instance-attribute

QueueCreateInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1647
1648
1649
1650
1651
1652
1653
1654
class QueueCreateInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'type', 'entries')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    type = sgqlc.types.Field(String, graphql_name='type')
    entries = sgqlc.types.Field(sgqlc.types.list_of(
        ItemCreateInput), graphql_name='entries')

__field_names__ = ('client_mutation_id', 'type', 'entries') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

entries = sgqlc.types.Field(sgqlc.types.list_of(ItemCreateInput), graphql_name='entries') class-attribute instance-attribute

type = sgqlc.types.Field(String, graphql_name='type') class-attribute instance-attribute

QueueEdge

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
3729
3730
3731
3732
3733
3734
class QueueEdge(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('cursor', 'node')
    cursor = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='cursor')
    node = sgqlc.types.Field('QueueInterface', graphql_name='node')

__field_names__ = ('cursor', 'node') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

cursor = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='cursor') class-attribute instance-attribute

node = sgqlc.types.Field('QueueInterface', graphql_name='node') class-attribute instance-attribute

QueueEntryListInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1657
1658
1659
1660
1661
1662
1663
1664
class QueueEntryListInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'entry', 'queue')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    entry = sgqlc.types.Field(sgqlc.types.non_null(
        ItemCreateInput), graphql_name='entry')
    queue = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='queue')

__field_names__ = ('client_mutation_id', 'entry', 'queue') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

entry = sgqlc.types.Field(sgqlc.types.non_null(ItemCreateInput), graphql_name='entry') class-attribute instance-attribute

queue = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='queue') class-attribute instance-attribute

QueueFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1667
1668
1669
1670
1671
1672
class QueueFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('created_at', 'modified_at', 'user')
    created_at = sgqlc.types.Field(DateFilterB, graphql_name='createdAt')
    modified_at = sgqlc.types.Field(DateFilterB, graphql_name='modifiedAt')
    user = sgqlc.types.Field(EndUserRelationFilterB, graphql_name='user')

__field_names__ = ('created_at', 'modified_at', 'user') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

created_at = sgqlc.types.Field(DateFilterB, graphql_name='createdAt') class-attribute instance-attribute

modified_at = sgqlc.types.Field(DateFilterB, graphql_name='modifiedAt') class-attribute instance-attribute

user = sgqlc.types.Field(EndUserRelationFilterB, graphql_name='user') class-attribute instance-attribute

QueueInterface

Bases: sgqlc.types.Interface

Source code in src/libaudiothek/audiothek_schema.py
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
class QueueInterface(sgqlc.types.Interface):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'base_id_prefix', 'created_at',
                       'entries', 'modified_at', 'user')
    id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id')
    base_id_prefix = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='baseIdPrefix')
    created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
    entries = sgqlc.types.Field(ItemConnection, graphql_name='entries', args=sgqlc.types.ArgDict((
        ('after', sgqlc.types.Arg(String, graphql_name='after', default=None)),
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('before', sgqlc.types.Arg(String, graphql_name='before', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('filter', sgqlc.types.Arg(ItemFilterB, graphql_name='filter', default=None)),
        ('order_by', sgqlc.types.Arg(ItemSortOrder,
         graphql_name='orderBy', default=None)),
    ))
    )
    modified_at = sgqlc.types.Field(DateTime, graphql_name='modifiedAt')
    user = sgqlc.types.Field(EndUserInterface, graphql_name='user')

__field_names__ = ('id', 'base_id_prefix', 'created_at', 'entries', 'modified_at', 'user') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

base_id_prefix = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='baseIdPrefix') class-attribute instance-attribute

created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt') class-attribute instance-attribute

entries = sgqlc.types.Field(ItemConnection, graphql_name='entries', args=sgqlc.types.ArgDict((('after', sgqlc.types.Arg(String, graphql_name='after', default=None)), ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('before', sgqlc.types.Arg(String, graphql_name='before', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('filter', sgqlc.types.Arg(ItemFilterB, graphql_name='filter', default=None)), ('order_by', sgqlc.types.Arg(ItemSortOrder, graphql_name='orderBy', default=None))))) class-attribute instance-attribute

id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') class-attribute instance-attribute

modified_at = sgqlc.types.Field(DateTime, graphql_name='modifiedAt') class-attribute instance-attribute

user = sgqlc.types.Field(EndUserInterface, graphql_name='user') class-attribute instance-attribute

QueuePayload

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
3759
3760
3761
3762
3763
3764
class QueuePayload(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'changed_queue')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    changed_queue = sgqlc.types.Field('Queue', graphql_name='changedQueue')

__field_names__ = ('client_mutation_id', 'changed_queue') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

changed_queue = sgqlc.types.Field('Queue', graphql_name='changedQueue') class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

QueueRelationFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1675
1676
1677
1678
1679
class QueueRelationFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'exists')
    id = sgqlc.types.Field(IDFilterB, graphql_name='id')
    exists = sgqlc.types.Field(BooleanFilterB, graphql_name='exists')

__field_names__ = ('id', 'exists') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

exists = sgqlc.types.Field(BooleanFilterB, graphql_name='exists') class-attribute instance-attribute

id = sgqlc.types.Field(IDFilterB, graphql_name='id') class-attribute instance-attribute

QueueRemoveAllListInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1682
1683
1684
1685
1686
1687
class QueueRemoveAllListInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'queue')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    queue = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='queue')

__field_names__ = ('client_mutation_id', 'queue') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

queue = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='queue') class-attribute instance-attribute

QueueSortOrder

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
218
219
220
221
class QueueSortOrder(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('CREATEDAT_ASC', 'CREATEDAT_DESC', 'ENTRIES_ID_ASC',
                   'ENTRIES_ID_DESC', 'MODIFIEDAT_ASC', 'MODIFIEDAT_DESC')

__choices__ = ('CREATEDAT_ASC', 'CREATEDAT_DESC', 'ENTRIES_ID_ASC', 'ENTRIES_ID_DESC', 'MODIFIEDAT_ASC', 'MODIFIEDAT_DESC') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

QueueUpdateInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1690
1691
1692
1693
1694
1695
1696
1697
class QueueUpdateInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'id', 'entries')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id')
    entries = sgqlc.types.Field(sgqlc.types.list_of(
        ItemCreateInput), graphql_name='entries')

__field_names__ = ('client_mutation_id', 'id', 'entries') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

entries = sgqlc.types.Field(sgqlc.types.list_of(ItemCreateInput), graphql_name='entries') class-attribute instance-attribute

id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') class-attribute instance-attribute

RecommendationData

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
3767
3768
3769
3770
3771
3772
class RecommendationData(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('score', 'item')
    score = sgqlc.types.Field(
        sgqlc.types.non_null(Float), graphql_name='score')
    item = sgqlc.types.Field('Item', graphql_name='item')

__field_names__ = ('score', 'item') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

item = sgqlc.types.Field('Item', graphql_name='item') class-attribute instance-attribute

score = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='score') class-attribute instance-attribute

RecommendationMeta

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
class RecommendationMeta(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('recommendation_id', 'algorithm',
                       'presentation_title', 'fallback_used', 'endpoint_url')
    recommendation_id = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='recommendationId')
    algorithm = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='algorithm')
    presentation_title = sgqlc.types.Field(
        String, graphql_name='presentationTitle')
    fallback_used = sgqlc.types.Field(
        sgqlc.types.non_null(Boolean), graphql_name='fallbackUsed')
    endpoint_url = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='endpointUrl')

__field_names__ = ('recommendation_id', 'algorithm', 'presentation_title', 'fallback_used', 'endpoint_url') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

algorithm = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='algorithm') class-attribute instance-attribute

endpoint_url = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='endpointUrl') class-attribute instance-attribute

fallback_used = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='fallbackUsed') class-attribute instance-attribute

presentation_title = sgqlc.types.Field(String, graphql_name='presentationTitle') class-attribute instance-attribute

recommendation_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='recommendationId') class-attribute instance-attribute

RecommendationSection

Bases: sgqlc.types.Type, Section

Source code in src/libaudiothek/audiothek_schema.py
4756
4757
4758
4759
class RecommendationSection(sgqlc.types.Type, Section):
    __schema__ = audiothek_schema
    __field_names__ = ('meta',)
    meta = sgqlc.types.Field(RecommendationMeta, graphql_name='meta')

__field_names__ = ('meta') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

meta = sgqlc.types.Field(RecommendationMeta, graphql_name='meta') class-attribute instance-attribute

RecommendationsConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
class RecommendationsConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('recommendation_id', 'algorithm', 'presentation_title',
                       'presentation_title_en', 'fallback_used', 'recommendations')
    recommendation_id = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='recommendationId')
    algorithm = sgqlc.types.Field(String, graphql_name='algorithm')
    presentation_title = sgqlc.types.Field(
        String, graphql_name='presentationTitle')
    presentation_title_en = sgqlc.types.Field(
        String, graphql_name='presentationTitleEn')
    fallback_used = sgqlc.types.Field(Boolean, graphql_name='fallbackUsed')
    recommendations = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(RecommendationData)), graphql_name='recommendations', args=sgqlc.types.ArgDict((
        ('limit', sgqlc.types.Arg(Int, graphql_name='limit', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=0)),
    ))
    )

__field_names__ = ('recommendation_id', 'algorithm', 'presentation_title', 'presentation_title_en', 'fallback_used', 'recommendations') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

algorithm = sgqlc.types.Field(String, graphql_name='algorithm') class-attribute instance-attribute

fallback_used = sgqlc.types.Field(Boolean, graphql_name='fallbackUsed') class-attribute instance-attribute

presentation_title = sgqlc.types.Field(String, graphql_name='presentationTitle') class-attribute instance-attribute

presentation_title_en = sgqlc.types.Field(String, graphql_name='presentationTitleEn') class-attribute instance-attribute

recommendation_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='recommendationId') class-attribute instance-attribute

recommendations = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(RecommendationData)), graphql_name='recommendations', args=sgqlc.types.ArgDict((('limit', sgqlc.types.Arg(Int, graphql_name='limit', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=0))))) class-attribute instance-attribute

RemoteIDFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1700
1701
1702
1703
1704
1705
class RemoteIDFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('eq', 'ne', 'in_')
    eq = sgqlc.types.Field(ID, graphql_name='eq')
    ne = sgqlc.types.Field(ID, graphql_name='ne')
    in_ = sgqlc.types.Field(sgqlc.types.list_of(ID), graphql_name='in')

__field_names__ = ('eq', 'ne', 'in_') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

eq = sgqlc.types.Field(ID, graphql_name='eq') class-attribute instance-attribute

in_ = sgqlc.types.Field(sgqlc.types.list_of(ID), graphql_name='in') class-attribute instance-attribute

ne = sgqlc.types.Field(ID, graphql_name='ne') class-attribute instance-attribute

SearchResult

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
class SearchResult(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('items', 'program_sets',
                       'editorial_categories', 'editorial_collections', 'tracking')
    items = sgqlc.types.Field(ItemsSearchConnection, graphql_name='items')
    program_sets = sgqlc.types.Field(
        ProgramSetsSearchConnection, graphql_name='programSets')
    editorial_categories = sgqlc.types.Field(
        EditorialCategoriesConnection, graphql_name='editorialCategories')
    editorial_collections = sgqlc.types.Field(
        EditorialCollectionsConnection, graphql_name='editorialCollections')
    tracking = sgqlc.types.Field(JSON, graphql_name='tracking')

__field_names__ = ('items', 'program_sets', 'editorial_categories', 'editorial_collections', 'tracking') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

editorial_categories = sgqlc.types.Field(EditorialCategoriesConnection, graphql_name='editorialCategories') class-attribute instance-attribute

editorial_collections = sgqlc.types.Field(EditorialCollectionsConnection, graphql_name='editorialCollections') class-attribute instance-attribute

items = sgqlc.types.Field(ItemsSearchConnection, graphql_name='items') class-attribute instance-attribute

program_sets = sgqlc.types.Field(ProgramSetsSearchConnection, graphql_name='programSets') class-attribute instance-attribute

tracking = sgqlc.types.Field(JSON, graphql_name='tracking') class-attribute instance-attribute

SearchType

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
224
225
226
227
class SearchType(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('All', 'EditorialCategories',
                   'EditorialCollections', 'Items', 'ProgramSets')

__choices__ = ('All', 'EditorialCategories', 'EditorialCollections', 'Items', 'ProgramSets') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

Section

Bases: sgqlc.types.Interface

Source code in src/libaudiothek/audiothek_schema.py
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
class Section(sgqlc.types.Interface):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'title', 'layout', 'tracking',
                       'type', 'node_types', 'nodes')
    id = sgqlc.types.Field(ID, graphql_name='id')
    title = sgqlc.types.Field(String, graphql_name='title')
    layout = sgqlc.types.Field(JSON, graphql_name='layout')
    tracking = sgqlc.types.Field(JSON, graphql_name='tracking')
    type = sgqlc.types.Field(String, graphql_name='type')
    node_types = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null(TeaserTypeATG)), graphql_name='nodeTypes')
    nodes = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('Teaser')), graphql_name='nodes', args=sgqlc.types.ArgDict((
        ('limit', sgqlc.types.Arg(Int, graphql_name='limit', default=None)),
        ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=0)),
    ))
    )

__field_names__ = ('id', 'title', 'layout', 'tracking', 'type', 'node_types', 'nodes') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

id = sgqlc.types.Field(ID, graphql_name='id') class-attribute instance-attribute

layout = sgqlc.types.Field(JSON, graphql_name='layout') class-attribute instance-attribute

node_types = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(TeaserTypeATG)), graphql_name='nodeTypes') class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('Teaser')), graphql_name='nodes', args=sgqlc.types.ArgDict((('limit', sgqlc.types.Arg(Int, graphql_name='limit', default=None)), ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=0))))) class-attribute instance-attribute

title = sgqlc.types.Field(String, graphql_name='title') class-attribute instance-attribute

tracking = sgqlc.types.Field(JSON, graphql_name='tracking') class-attribute instance-attribute

type = sgqlc.types.Field(String, graphql_name='type') class-attribute instance-attribute

ShowType

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
230
231
232
233
class ShowType(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('FINITE_SERIES', 'INFINITE_SERIES',
                   'SEASON_SERIES', 'SINGLE')

__choices__ = ('FINITE_SERIES', 'INFINITE_SERIES', 'SEASON_SERIES', 'SINGLE') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

SophoraCompilation

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
3842
3843
3844
3845
3846
3847
3848
3849
class SophoraCompilation(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'title', 'teaser_type', 'teasers')
    id = sgqlc.types.Field(ID, graphql_name='id')
    title = sgqlc.types.Field(String, graphql_name='title')
    teaser_type = sgqlc.types.Field(String, graphql_name='teaserType')
    teasers = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null('SophoraTeaser')), graphql_name='teasers')

__field_names__ = ('id', 'title', 'teaser_type', 'teasers') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

id = sgqlc.types.Field(ID, graphql_name='id') class-attribute instance-attribute

teaser_type = sgqlc.types.Field(String, graphql_name='teaserType') class-attribute instance-attribute

teasers = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SophoraTeaser')), graphql_name='teasers') class-attribute instance-attribute

title = sgqlc.types.Field(String, graphql_name='title') class-attribute instance-attribute

SophoraTeaser

Bases: sgqlc.types.Type, Teaser

Source code in src/libaudiothek/audiothek_schema.py
4762
4763
4764
4765
4766
4767
4768
4769
4770
class SophoraTeaser(sgqlc.types.Type, Teaser):
    __schema__ = audiothek_schema
    __field_names__ = ('sophora_type', 'sophora_title',
                       'type', 'content_id', 'node')
    sophora_type = sgqlc.types.Field(String, graphql_name='sophoraType')
    sophora_title = sgqlc.types.Field(String, graphql_name='sophoraTitle')
    type = sgqlc.types.Field(String, graphql_name='type')
    content_id = sgqlc.types.Field(ID, graphql_name='contentId')
    node = sgqlc.types.Field(Teaser, graphql_name='node')

__field_names__ = ('sophora_type', 'sophora_title', 'type', 'content_id', 'node') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

content_id = sgqlc.types.Field(ID, graphql_name='contentId') class-attribute instance-attribute

node = sgqlc.types.Field(Teaser, graphql_name='node') class-attribute instance-attribute

sophora_title = sgqlc.types.Field(String, graphql_name='sophoraTitle') class-attribute instance-attribute

sophora_type = sgqlc.types.Field(String, graphql_name='sophoraType') class-attribute instance-attribute

type = sgqlc.types.Field(String, graphql_name='type') class-attribute instance-attribute

SophoraWidget

Bases: sgqlc.types.Type, Section

Source code in src/libaudiothek/audiothek_schema.py
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
class SophoraWidget(sgqlc.types.Type, Section):
    __schema__ = audiothek_schema
    __field_names__ = ('key', 'display_variant', 'size',
                       'title_visible', 'compilation')
    key = sgqlc.types.Field(String, graphql_name='key')
    display_variant = sgqlc.types.Field(
        WidgetDisplayVariant, graphql_name='displayVariant')
    size = sgqlc.types.Field(String, graphql_name='size')
    title_visible = sgqlc.types.Field(Boolean, graphql_name='titleVisible')
    compilation = sgqlc.types.Field(
        SophoraCompilation, graphql_name='compilation')

__field_names__ = ('key', 'display_variant', 'size', 'title_visible', 'compilation') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

compilation = sgqlc.types.Field(SophoraCompilation, graphql_name='compilation') class-attribute instance-attribute

display_variant = sgqlc.types.Field(WidgetDisplayVariant, graphql_name='displayVariant') class-attribute instance-attribute

key = sgqlc.types.Field(String, graphql_name='key') class-attribute instance-attribute

size = sgqlc.types.Field(String, graphql_name='size') class-attribute instance-attribute

title_visible = sgqlc.types.Field(Boolean, graphql_name='titleVisible') class-attribute instance-attribute

SourceSystem

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
236
237
238
class SourceSystem(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('Core', 'Hybrid', 'Postgres')

__choices__ = ('Core', 'Hybrid', 'Postgres') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

Status

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
241
242
243
244
class Status(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('DELETED', 'DEPUBLISHED', 'INCOMPLETE', 'OBSOLETE',
                   'PUBLISHED', 'SCHEDULED', 'SPECIAL', 'SUPERSEDED')

__choices__ = ('DELETED', 'DEPUBLISHED', 'INCOMPLETE', 'OBSOLETE', 'PUBLISHED', 'SCHEDULED', 'SPECIAL', 'SUPERSEDED') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

StatusFilter

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
class StatusFilter(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from',
                       'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to')
    is_null = sgqlc.types.Field(Boolean, graphql_name='isNull')
    equal_to = sgqlc.types.Field(Status, graphql_name='equalTo')
    not_equal_to = sgqlc.types.Field(Status, graphql_name='notEqualTo')
    distinct_from = sgqlc.types.Field(Status, graphql_name='distinctFrom')
    not_distinct_from = sgqlc.types.Field(
        Status, graphql_name='notDistinctFrom')
    in_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null(Status)), graphql_name='in')
    not_in = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null(Status)), graphql_name='notIn')
    less_than = sgqlc.types.Field(Status, graphql_name='lessThan')
    less_than_or_equal_to = sgqlc.types.Field(
        Status, graphql_name='lessThanOrEqualTo')
    greater_than = sgqlc.types.Field(Status, graphql_name='greaterThan')
    greater_than_or_equal_to = sgqlc.types.Field(
        Status, graphql_name='greaterThanOrEqualTo')

__field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

distinct_from = sgqlc.types.Field(Status, graphql_name='distinctFrom') class-attribute instance-attribute

equal_to = sgqlc.types.Field(Status, graphql_name='equalTo') class-attribute instance-attribute

greater_than = sgqlc.types.Field(Status, graphql_name='greaterThan') class-attribute instance-attribute

greater_than_or_equal_to = sgqlc.types.Field(Status, graphql_name='greaterThanOrEqualTo') class-attribute instance-attribute

in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(Status)), graphql_name='in') class-attribute instance-attribute

is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') class-attribute instance-attribute

less_than = sgqlc.types.Field(Status, graphql_name='lessThan') class-attribute instance-attribute

less_than_or_equal_to = sgqlc.types.Field(Status, graphql_name='lessThanOrEqualTo') class-attribute instance-attribute

not_distinct_from = sgqlc.types.Field(Status, graphql_name='notDistinctFrom') class-attribute instance-attribute

not_equal_to = sgqlc.types.Field(Status, graphql_name='notEqualTo') class-attribute instance-attribute

not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(Status)), graphql_name='notIn') class-attribute instance-attribute

StreamType

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
3852
3853
3854
3855
3856
3857
3858
class StreamType(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('url', 'title', 'mimetype', 'row_id')
    url = sgqlc.types.Field(String, graphql_name='url')
    title = sgqlc.types.Field(String, graphql_name='title')
    mimetype = sgqlc.types.Field(String, graphql_name='mimetype')
    row_id = sgqlc.types.Field(String, graphql_name='rowId')

__field_names__ = ('url', 'title', 'mimetype', 'row_id') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

mimetype = sgqlc.types.Field(String, graphql_name='mimetype') class-attribute instance-attribute

row_id = sgqlc.types.Field(String, graphql_name='rowId') class-attribute instance-attribute

title = sgqlc.types.Field(String, graphql_name='title') class-attribute instance-attribute

url = sgqlc.types.Field(String, graphql_name='url') class-attribute instance-attribute

StreamTypeInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1730
1731
1732
1733
1734
1735
1736
class StreamTypeInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('url', 'title', 'mimetype', 'id')
    url = sgqlc.types.Field(String, graphql_name='url')
    title = sgqlc.types.Field(String, graphql_name='title')
    mimetype = sgqlc.types.Field(String, graphql_name='mimetype')
    id = sgqlc.types.Field(String, graphql_name='id')

__field_names__ = ('url', 'title', 'mimetype', 'id') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

id = sgqlc.types.Field(String, graphql_name='id') class-attribute instance-attribute

mimetype = sgqlc.types.Field(String, graphql_name='mimetype') class-attribute instance-attribute

title = sgqlc.types.Field(String, graphql_name='title') class-attribute instance-attribute

url = sgqlc.types.Field(String, graphql_name='url') class-attribute instance-attribute

StringFilter

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
class StringFilter(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to', 'includes', 'not_includes', 'includes_insensitive', 'not_includes_insensitive', 'starts_with', 'not_starts_with', 'starts_with_insensitive', 'not_starts_with_insensitive', 'ends_with', 'not_ends_with',
                       'ends_with_insensitive', 'not_ends_with_insensitive', 'like', 'not_like', 'like_insensitive', 'not_like_insensitive', 'equal_to_insensitive', 'not_equal_to_insensitive', 'distinct_from_insensitive', 'not_distinct_from_insensitive', 'in_insensitive', 'not_in_insensitive', 'less_than_insensitive', 'less_than_or_equal_to_insensitive', 'greater_than_insensitive', 'greater_than_or_equal_to_insensitive')
    is_null = sgqlc.types.Field(Boolean, graphql_name='isNull')
    equal_to = sgqlc.types.Field(String, graphql_name='equalTo')
    not_equal_to = sgqlc.types.Field(String, graphql_name='notEqualTo')
    distinct_from = sgqlc.types.Field(String, graphql_name='distinctFrom')
    not_distinct_from = sgqlc.types.Field(
        String, graphql_name='notDistinctFrom')
    in_ = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null(String)), graphql_name='in')
    not_in = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null(String)), graphql_name='notIn')
    less_than = sgqlc.types.Field(String, graphql_name='lessThan')
    less_than_or_equal_to = sgqlc.types.Field(
        String, graphql_name='lessThanOrEqualTo')
    greater_than = sgqlc.types.Field(String, graphql_name='greaterThan')
    greater_than_or_equal_to = sgqlc.types.Field(
        String, graphql_name='greaterThanOrEqualTo')
    includes = sgqlc.types.Field(String, graphql_name='includes')
    not_includes = sgqlc.types.Field(String, graphql_name='notIncludes')
    includes_insensitive = sgqlc.types.Field(
        String, graphql_name='includesInsensitive')
    not_includes_insensitive = sgqlc.types.Field(
        String, graphql_name='notIncludesInsensitive')
    starts_with = sgqlc.types.Field(String, graphql_name='startsWith')
    not_starts_with = sgqlc.types.Field(String, graphql_name='notStartsWith')
    starts_with_insensitive = sgqlc.types.Field(
        String, graphql_name='startsWithInsensitive')
    not_starts_with_insensitive = sgqlc.types.Field(
        String, graphql_name='notStartsWithInsensitive')
    ends_with = sgqlc.types.Field(String, graphql_name='endsWith')
    not_ends_with = sgqlc.types.Field(String, graphql_name='notEndsWith')
    ends_with_insensitive = sgqlc.types.Field(
        String, graphql_name='endsWithInsensitive')
    not_ends_with_insensitive = sgqlc.types.Field(
        String, graphql_name='notEndsWithInsensitive')
    like = sgqlc.types.Field(String, graphql_name='like')
    not_like = sgqlc.types.Field(String, graphql_name='notLike')
    like_insensitive = sgqlc.types.Field(
        String, graphql_name='likeInsensitive')
    not_like_insensitive = sgqlc.types.Field(
        String, graphql_name='notLikeInsensitive')
    equal_to_insensitive = sgqlc.types.Field(
        String, graphql_name='equalToInsensitive')
    not_equal_to_insensitive = sgqlc.types.Field(
        String, graphql_name='notEqualToInsensitive')
    distinct_from_insensitive = sgqlc.types.Field(
        String, graphql_name='distinctFromInsensitive')
    not_distinct_from_insensitive = sgqlc.types.Field(
        String, graphql_name='notDistinctFromInsensitive')
    in_insensitive = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null(String)), graphql_name='inInsensitive')
    not_in_insensitive = sgqlc.types.Field(sgqlc.types.list_of(
        sgqlc.types.non_null(String)), graphql_name='notInInsensitive')
    less_than_insensitive = sgqlc.types.Field(
        String, graphql_name='lessThanInsensitive')
    less_than_or_equal_to_insensitive = sgqlc.types.Field(
        String, graphql_name='lessThanOrEqualToInsensitive')
    greater_than_insensitive = sgqlc.types.Field(
        String, graphql_name='greaterThanInsensitive')
    greater_than_or_equal_to_insensitive = sgqlc.types.Field(
        String, graphql_name='greaterThanOrEqualToInsensitive')

__field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'in_', 'not_in', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to', 'includes', 'not_includes', 'includes_insensitive', 'not_includes_insensitive', 'starts_with', 'not_starts_with', 'starts_with_insensitive', 'not_starts_with_insensitive', 'ends_with', 'not_ends_with', 'ends_with_insensitive', 'not_ends_with_insensitive', 'like', 'not_like', 'like_insensitive', 'not_like_insensitive', 'equal_to_insensitive', 'not_equal_to_insensitive', 'distinct_from_insensitive', 'not_distinct_from_insensitive', 'in_insensitive', 'not_in_insensitive', 'less_than_insensitive', 'less_than_or_equal_to_insensitive', 'greater_than_insensitive', 'greater_than_or_equal_to_insensitive') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

distinct_from = sgqlc.types.Field(String, graphql_name='distinctFrom') class-attribute instance-attribute

distinct_from_insensitive = sgqlc.types.Field(String, graphql_name='distinctFromInsensitive') class-attribute instance-attribute

ends_with = sgqlc.types.Field(String, graphql_name='endsWith') class-attribute instance-attribute

ends_with_insensitive = sgqlc.types.Field(String, graphql_name='endsWithInsensitive') class-attribute instance-attribute

equal_to = sgqlc.types.Field(String, graphql_name='equalTo') class-attribute instance-attribute

equal_to_insensitive = sgqlc.types.Field(String, graphql_name='equalToInsensitive') class-attribute instance-attribute

greater_than = sgqlc.types.Field(String, graphql_name='greaterThan') class-attribute instance-attribute

greater_than_insensitive = sgqlc.types.Field(String, graphql_name='greaterThanInsensitive') class-attribute instance-attribute

greater_than_or_equal_to = sgqlc.types.Field(String, graphql_name='greaterThanOrEqualTo') class-attribute instance-attribute

greater_than_or_equal_to_insensitive = sgqlc.types.Field(String, graphql_name='greaterThanOrEqualToInsensitive') class-attribute instance-attribute

in_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='in') class-attribute instance-attribute

in_insensitive = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='inInsensitive') class-attribute instance-attribute

includes = sgqlc.types.Field(String, graphql_name='includes') class-attribute instance-attribute

includes_insensitive = sgqlc.types.Field(String, graphql_name='includesInsensitive') class-attribute instance-attribute

is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') class-attribute instance-attribute

less_than = sgqlc.types.Field(String, graphql_name='lessThan') class-attribute instance-attribute

less_than_insensitive = sgqlc.types.Field(String, graphql_name='lessThanInsensitive') class-attribute instance-attribute

less_than_or_equal_to = sgqlc.types.Field(String, graphql_name='lessThanOrEqualTo') class-attribute instance-attribute

less_than_or_equal_to_insensitive = sgqlc.types.Field(String, graphql_name='lessThanOrEqualToInsensitive') class-attribute instance-attribute

like = sgqlc.types.Field(String, graphql_name='like') class-attribute instance-attribute

like_insensitive = sgqlc.types.Field(String, graphql_name='likeInsensitive') class-attribute instance-attribute

not_distinct_from = sgqlc.types.Field(String, graphql_name='notDistinctFrom') class-attribute instance-attribute

not_distinct_from_insensitive = sgqlc.types.Field(String, graphql_name='notDistinctFromInsensitive') class-attribute instance-attribute

not_ends_with = sgqlc.types.Field(String, graphql_name='notEndsWith') class-attribute instance-attribute

not_ends_with_insensitive = sgqlc.types.Field(String, graphql_name='notEndsWithInsensitive') class-attribute instance-attribute

not_equal_to = sgqlc.types.Field(String, graphql_name='notEqualTo') class-attribute instance-attribute

not_equal_to_insensitive = sgqlc.types.Field(String, graphql_name='notEqualToInsensitive') class-attribute instance-attribute

not_in = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='notIn') class-attribute instance-attribute

not_in_insensitive = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='notInInsensitive') class-attribute instance-attribute

not_includes = sgqlc.types.Field(String, graphql_name='notIncludes') class-attribute instance-attribute

not_includes_insensitive = sgqlc.types.Field(String, graphql_name='notIncludesInsensitive') class-attribute instance-attribute

not_like = sgqlc.types.Field(String, graphql_name='notLike') class-attribute instance-attribute

not_like_insensitive = sgqlc.types.Field(String, graphql_name='notLikeInsensitive') class-attribute instance-attribute

not_starts_with = sgqlc.types.Field(String, graphql_name='notStartsWith') class-attribute instance-attribute

not_starts_with_insensitive = sgqlc.types.Field(String, graphql_name='notStartsWithInsensitive') class-attribute instance-attribute

starts_with = sgqlc.types.Field(String, graphql_name='startsWith') class-attribute instance-attribute

starts_with_insensitive = sgqlc.types.Field(String, graphql_name='startsWithInsensitive') class-attribute instance-attribute

StringFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
class StringFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('eq', 'ne', 'in_', 'gt', 'gte', 'lt',
                       'lte', 'starts_with', 'ends_with', 'matches')
    eq = sgqlc.types.Field(String, graphql_name='eq')
    ne = sgqlc.types.Field(String, graphql_name='ne')
    in_ = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='in')
    gt = sgqlc.types.Field(String, graphql_name='gt')
    gte = sgqlc.types.Field(String, graphql_name='gte')
    lt = sgqlc.types.Field(String, graphql_name='lt')
    lte = sgqlc.types.Field(String, graphql_name='lte')
    starts_with = sgqlc.types.Field(String, graphql_name='startsWith')
    ends_with = sgqlc.types.Field(String, graphql_name='endsWith')
    matches = sgqlc.types.Field(String, graphql_name='matches')

__field_names__ = ('eq', 'ne', 'in_', 'gt', 'gte', 'lt', 'lte', 'starts_with', 'ends_with', 'matches') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

ends_with = sgqlc.types.Field(String, graphql_name='endsWith') class-attribute instance-attribute

eq = sgqlc.types.Field(String, graphql_name='eq') class-attribute instance-attribute

gt = sgqlc.types.Field(String, graphql_name='gt') class-attribute instance-attribute

gte = sgqlc.types.Field(String, graphql_name='gte') class-attribute instance-attribute

in_ = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='in') class-attribute instance-attribute

lt = sgqlc.types.Field(String, graphql_name='lt') class-attribute instance-attribute

lte = sgqlc.types.Field(String, graphql_name='lte') class-attribute instance-attribute

matches = sgqlc.types.Field(String, graphql_name='matches') class-attribute instance-attribute

ne = sgqlc.types.Field(String, graphql_name='ne') class-attribute instance-attribute

starts_with = sgqlc.types.Field(String, graphql_name='startsWith') class-attribute instance-attribute

StringListFilter

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
class StringListFilter(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to',
                       'contains', 'contained_by', 'overlaps', 'any_equal_to', 'any_not_equal_to', 'any_less_than', 'any_less_than_or_equal_to', 'any_greater_than', 'any_greater_than_or_equal_to')
    is_null = sgqlc.types.Field(Boolean, graphql_name='isNull')
    equal_to = sgqlc.types.Field(
        sgqlc.types.list_of(String), graphql_name='equalTo')
    not_equal_to = sgqlc.types.Field(
        sgqlc.types.list_of(String), graphql_name='notEqualTo')
    distinct_from = sgqlc.types.Field(
        sgqlc.types.list_of(String), graphql_name='distinctFrom')
    not_distinct_from = sgqlc.types.Field(
        sgqlc.types.list_of(String), graphql_name='notDistinctFrom')
    less_than = sgqlc.types.Field(
        sgqlc.types.list_of(String), graphql_name='lessThan')
    less_than_or_equal_to = sgqlc.types.Field(
        sgqlc.types.list_of(String), graphql_name='lessThanOrEqualTo')
    greater_than = sgqlc.types.Field(
        sgqlc.types.list_of(String), graphql_name='greaterThan')
    greater_than_or_equal_to = sgqlc.types.Field(
        sgqlc.types.list_of(String), graphql_name='greaterThanOrEqualTo')
    contains = sgqlc.types.Field(
        sgqlc.types.list_of(String), graphql_name='contains')
    contained_by = sgqlc.types.Field(
        sgqlc.types.list_of(String), graphql_name='containedBy')
    overlaps = sgqlc.types.Field(
        sgqlc.types.list_of(String), graphql_name='overlaps')
    any_equal_to = sgqlc.types.Field(String, graphql_name='anyEqualTo')
    any_not_equal_to = sgqlc.types.Field(String, graphql_name='anyNotEqualTo')
    any_less_than = sgqlc.types.Field(String, graphql_name='anyLessThan')
    any_less_than_or_equal_to = sgqlc.types.Field(
        String, graphql_name='anyLessThanOrEqualTo')
    any_greater_than = sgqlc.types.Field(String, graphql_name='anyGreaterThan')
    any_greater_than_or_equal_to = sgqlc.types.Field(
        String, graphql_name='anyGreaterThanOrEqualTo')

__field_names__ = ('is_null', 'equal_to', 'not_equal_to', 'distinct_from', 'not_distinct_from', 'less_than', 'less_than_or_equal_to', 'greater_than', 'greater_than_or_equal_to', 'contains', 'contained_by', 'overlaps', 'any_equal_to', 'any_not_equal_to', 'any_less_than', 'any_less_than_or_equal_to', 'any_greater_than', 'any_greater_than_or_equal_to') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

any_equal_to = sgqlc.types.Field(String, graphql_name='anyEqualTo') class-attribute instance-attribute

any_greater_than = sgqlc.types.Field(String, graphql_name='anyGreaterThan') class-attribute instance-attribute

any_greater_than_or_equal_to = sgqlc.types.Field(String, graphql_name='anyGreaterThanOrEqualTo') class-attribute instance-attribute

any_less_than = sgqlc.types.Field(String, graphql_name='anyLessThan') class-attribute instance-attribute

any_less_than_or_equal_to = sgqlc.types.Field(String, graphql_name='anyLessThanOrEqualTo') class-attribute instance-attribute

any_not_equal_to = sgqlc.types.Field(String, graphql_name='anyNotEqualTo') class-attribute instance-attribute

contained_by = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='containedBy') class-attribute instance-attribute

contains = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='contains') class-attribute instance-attribute

distinct_from = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='distinctFrom') class-attribute instance-attribute

equal_to = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='equalTo') class-attribute instance-attribute

greater_than = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='greaterThan') class-attribute instance-attribute

greater_than_or_equal_to = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='greaterThanOrEqualTo') class-attribute instance-attribute

is_null = sgqlc.types.Field(Boolean, graphql_name='isNull') class-attribute instance-attribute

less_than = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='lessThan') class-attribute instance-attribute

less_than_or_equal_to = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='lessThanOrEqualTo') class-attribute instance-attribute

not_distinct_from = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='notDistinctFrom') class-attribute instance-attribute

not_equal_to = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='notEqualTo') class-attribute instance-attribute

overlaps = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='overlaps') class-attribute instance-attribute

SubscriptionList

Bases: sgqlc.types.Type, SubscriptionListInterface

Source code in src/libaudiothek/audiothek_schema.py
4786
4787
4788
class SubscriptionList(sgqlc.types.Type, SubscriptionListInterface):
    __schema__ = audiothek_schema
    __field_names__ = ()

__field_names__ = () class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

SubscriptionListConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
class SubscriptionListConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('count', 'edges', 'nodes', 'page_info')
    count = sgqlc.types.Field(Int, graphql_name='count')
    edges = sgqlc.types.Field(sgqlc.types.list_of(
        'SubscriptionListEdge'), graphql_name='edges')
    nodes = sgqlc.types.Field(sgqlc.types.list_of(
        'SubscriptionListInterface'), graphql_name='nodes')
    page_info = sgqlc.types.Field(
        sgqlc.types.non_null(PageInfo), graphql_name='pageInfo')

__field_names__ = ('count', 'edges', 'nodes', 'page_info') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

count = sgqlc.types.Field(Int, graphql_name='count') class-attribute instance-attribute

edges = sgqlc.types.Field(sgqlc.types.list_of('SubscriptionListEdge'), graphql_name='edges') class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.list_of('SubscriptionListInterface'), graphql_name='nodes') class-attribute instance-attribute

page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') class-attribute instance-attribute

SubscriptionListConnectionFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1858
1859
1860
1861
1862
class SubscriptionListConnectionFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('empty', 'contains')
    empty = sgqlc.types.Field(BooleanFilterB, graphql_name='empty')
    contains = sgqlc.types.Field(ID, graphql_name='contains')

__field_names__ = ('empty', 'contains') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

contains = sgqlc.types.Field(ID, graphql_name='contains') class-attribute instance-attribute

empty = sgqlc.types.Field(BooleanFilterB, graphql_name='empty') class-attribute instance-attribute

SubscriptionListCreateInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1865
1866
1867
1868
1869
1870
1871
1872
class SubscriptionListCreateInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'type', 'program_sets')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    type = sgqlc.types.Field(String, graphql_name='type')
    program_sets = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(
        ProgramSetSubscriptionCreateInput)), graphql_name='programSets')

__field_names__ = ('client_mutation_id', 'type', 'program_sets') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

program_sets = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(ProgramSetSubscriptionCreateInput)), graphql_name='programSets') class-attribute instance-attribute

type = sgqlc.types.Field(String, graphql_name='type') class-attribute instance-attribute

SubscriptionListEdge

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
3873
3874
3875
3876
3877
3878
class SubscriptionListEdge(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('cursor', 'node')
    cursor = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='cursor')
    node = sgqlc.types.Field('SubscriptionListInterface', graphql_name='node')

__field_names__ = ('cursor', 'node') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

cursor = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='cursor') class-attribute instance-attribute

node = sgqlc.types.Field('SubscriptionListInterface', graphql_name='node') class-attribute instance-attribute

SubscriptionListFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1875
1876
1877
1878
1879
1880
1881
1882
class SubscriptionListFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('created_at', 'modified_at', 'program_sets', 'user')
    created_at = sgqlc.types.Field(DateFilterB, graphql_name='createdAt')
    modified_at = sgqlc.types.Field(DateFilterB, graphql_name='modifiedAt')
    program_sets = sgqlc.types.Field(
        ProgramSetSubscriptionConnectionFilterB, graphql_name='programSets')
    user = sgqlc.types.Field(EndUserRelationFilterB, graphql_name='user')

__field_names__ = ('created_at', 'modified_at', 'program_sets', 'user') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

created_at = sgqlc.types.Field(DateFilterB, graphql_name='createdAt') class-attribute instance-attribute

modified_at = sgqlc.types.Field(DateFilterB, graphql_name='modifiedAt') class-attribute instance-attribute

program_sets = sgqlc.types.Field(ProgramSetSubscriptionConnectionFilterB, graphql_name='programSets') class-attribute instance-attribute

user = sgqlc.types.Field(EndUserRelationFilterB, graphql_name='user') class-attribute instance-attribute

SubscriptionListInterface

Bases: sgqlc.types.Interface

Source code in src/libaudiothek/audiothek_schema.py
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
class SubscriptionListInterface(sgqlc.types.Interface):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'base_id_prefix', 'created_at',
                       'modified_at', 'program_sets', 'user')
    id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id')
    base_id_prefix = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='baseIdPrefix')
    created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
    modified_at = sgqlc.types.Field(DateTime, graphql_name='modifiedAt')
    program_sets = sgqlc.types.Field(ProgramSetSubscriptionConnection, graphql_name='programSets', args=sgqlc.types.ArgDict((
        ('after', sgqlc.types.Arg(String, graphql_name='after', default=None)),
        ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)),
        ('before', sgqlc.types.Arg(String, graphql_name='before', default=None)),
        ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)),
        ('filter', sgqlc.types.Arg(ProgramSetSubscriptionFilterB,
         graphql_name='filter', default=None)),
        ('order_by', sgqlc.types.Arg(ProgramSetSubscriptionSortOrder,
         graphql_name='orderBy', default=None)),
    ))
    )
    user = sgqlc.types.Field(EndUserInterface, graphql_name='user')

__field_names__ = ('id', 'base_id_prefix', 'created_at', 'modified_at', 'program_sets', 'user') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

base_id_prefix = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='baseIdPrefix') class-attribute instance-attribute

created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt') class-attribute instance-attribute

id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') class-attribute instance-attribute

modified_at = sgqlc.types.Field(DateTime, graphql_name='modifiedAt') class-attribute instance-attribute

program_sets = sgqlc.types.Field(ProgramSetSubscriptionConnection, graphql_name='programSets', args=sgqlc.types.ArgDict((('after', sgqlc.types.Arg(String, graphql_name='after', default=None)), ('first', sgqlc.types.Arg(Int, graphql_name='first', default=None)), ('before', sgqlc.types.Arg(String, graphql_name='before', default=None)), ('last', sgqlc.types.Arg(Int, graphql_name='last', default=None)), ('filter', sgqlc.types.Arg(ProgramSetSubscriptionFilterB, graphql_name='filter', default=None)), ('order_by', sgqlc.types.Arg(ProgramSetSubscriptionSortOrder, graphql_name='orderBy', default=None))))) class-attribute instance-attribute

user = sgqlc.types.Field(EndUserInterface, graphql_name='user') class-attribute instance-attribute

SubscriptionListPayload

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
3904
3905
3906
3907
3908
3909
3910
class SubscriptionListPayload(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'changed_subscription_list')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    changed_subscription_list = sgqlc.types.Field(
        'SubscriptionList', graphql_name='changedSubscriptionList')

__field_names__ = ('client_mutation_id', 'changed_subscription_list') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

changed_subscription_list = sgqlc.types.Field('SubscriptionList', graphql_name='changedSubscriptionList') class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

SubscriptionListProgramSetListInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
class SubscriptionListProgramSetListInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id',
                       'program_set', 'subscription_list')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    program_set = sgqlc.types.Field(sgqlc.types.non_null(
        ProgramSetSubscriptionCreateInput), graphql_name='programSet')
    subscription_list = sgqlc.types.Field(
        sgqlc.types.non_null(ID), graphql_name='subscriptionList')

__field_names__ = ('client_mutation_id', 'program_set', 'subscription_list') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

program_set = sgqlc.types.Field(sgqlc.types.non_null(ProgramSetSubscriptionCreateInput), graphql_name='programSet') class-attribute instance-attribute

subscription_list = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='subscriptionList') class-attribute instance-attribute

SubscriptionListRelationFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1897
1898
1899
1900
1901
class SubscriptionListRelationFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'exists')
    id = sgqlc.types.Field(IDFilterB, graphql_name='id')
    exists = sgqlc.types.Field(BooleanFilterB, graphql_name='exists')

__field_names__ = ('id', 'exists') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

exists = sgqlc.types.Field(BooleanFilterB, graphql_name='exists') class-attribute instance-attribute

id = sgqlc.types.Field(IDFilterB, graphql_name='id') class-attribute instance-attribute

SubscriptionListRemoveAllListInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1904
1905
1906
1907
1908
1909
1910
class SubscriptionListRemoveAllListInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'subscription_list')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    subscription_list = sgqlc.types.Field(
        sgqlc.types.non_null(ID), graphql_name='subscriptionList')

__field_names__ = ('client_mutation_id', 'subscription_list') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

subscription_list = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='subscriptionList') class-attribute instance-attribute

SubscriptionListSortOrder

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
250
251
252
253
class SubscriptionListSortOrder(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('CREATEDAT_ASC', 'CREATEDAT_DESC', 'MODIFIEDAT_ASC', 'MODIFIEDAT_DESC', 'PROGRAMSETS_CREATEDAT_ASC', 'PROGRAMSETS_CREATEDAT_DESC', 'PROGRAMSETS_LASTVISITEDAT_ASC', 'PROGRAMSETS_LASTVISITEDAT_DESC',
                   'PROGRAMSETS_MODIFIEDAT_ASC', 'PROGRAMSETS_MODIFIEDAT_DESC', 'PROGRAMSETS_SUBSCRIBEDAT_ASC', 'PROGRAMSETS_SUBSCRIBEDAT_DESC', 'PROGRAMSETS_SUBSCRIBEDPROGRAMSET_ID_ASC', 'PROGRAMSETS_SUBSCRIBEDPROGRAMSET_ID_DESC')

__choices__ = ('CREATEDAT_ASC', 'CREATEDAT_DESC', 'MODIFIEDAT_ASC', 'MODIFIEDAT_DESC', 'PROGRAMSETS_CREATEDAT_ASC', 'PROGRAMSETS_CREATEDAT_DESC', 'PROGRAMSETS_LASTVISITEDAT_ASC', 'PROGRAMSETS_LASTVISITEDAT_DESC', 'PROGRAMSETS_MODIFIEDAT_ASC', 'PROGRAMSETS_MODIFIEDAT_DESC', 'PROGRAMSETS_SUBSCRIBEDAT_ASC', 'PROGRAMSETS_SUBSCRIBEDAT_DESC', 'PROGRAMSETS_SUBSCRIBEDPROGRAMSET_ID_ASC', 'PROGRAMSETS_SUBSCRIBEDPROGRAMSET_ID_DESC') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

SubscriptionListUpdateInput

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1913
1914
1915
1916
1917
1918
1919
1920
class SubscriptionListUpdateInput(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('client_mutation_id', 'id', 'program_sets')
    client_mutation_id = sgqlc.types.Field(
        String, graphql_name='clientMutationId')
    id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id')
    program_sets = sgqlc.types.Field(sgqlc.types.list_of(
        ProgramSetSubscriptionCreateInput), graphql_name='programSets')

__field_names__ = ('client_mutation_id', 'id', 'program_sets') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

client_mutation_id = sgqlc.types.Field(String, graphql_name='clientMutationId') class-attribute instance-attribute

id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') class-attribute instance-attribute

program_sets = sgqlc.types.Field(sgqlc.types.list_of(ProgramSetSubscriptionCreateInput), graphql_name='programSets') class-attribute instance-attribute

System

Bases: sgqlc.types.Type, SystemInterface

Source code in src/libaudiothek/audiothek_schema.py
4791
4792
4793
class System(sgqlc.types.Type, SystemInterface):
    __schema__ = audiothek_schema
    __field_names__ = ()

__field_names__ = () class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

SystemConnection

Bases: sgqlc.types.relay.Connection

Source code in src/libaudiothek/audiothek_schema.py
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
class SystemConnection(sgqlc.types.relay.Connection):
    __schema__ = audiothek_schema
    __field_names__ = ('count', 'edges', 'nodes', 'page_info')
    count = sgqlc.types.Field(Int, graphql_name='count')
    edges = sgqlc.types.Field(sgqlc.types.list_of(
        'SystemEdge'), graphql_name='edges')
    nodes = sgqlc.types.Field(sgqlc.types.list_of(
        'SystemInterface'), graphql_name='nodes')
    page_info = sgqlc.types.Field(
        sgqlc.types.non_null(PageInfo), graphql_name='pageInfo')

__field_names__ = ('count', 'edges', 'nodes', 'page_info') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

count = sgqlc.types.Field(Int, graphql_name='count') class-attribute instance-attribute

edges = sgqlc.types.Field(sgqlc.types.list_of('SystemEdge'), graphql_name='edges') class-attribute instance-attribute

nodes = sgqlc.types.Field(sgqlc.types.list_of('SystemInterface'), graphql_name='nodes') class-attribute instance-attribute

page_info = sgqlc.types.Field(sgqlc.types.non_null(PageInfo), graphql_name='pageInfo') class-attribute instance-attribute

SystemConnectionFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1923
1924
1925
1926
1927
class SystemConnectionFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('empty', 'contains')
    empty = sgqlc.types.Field(BooleanFilterB, graphql_name='empty')
    contains = sgqlc.types.Field(ID, graphql_name='contains')

__field_names__ = ('empty', 'contains') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

contains = sgqlc.types.Field(ID, graphql_name='contains') class-attribute instance-attribute

empty = sgqlc.types.Field(BooleanFilterB, graphql_name='empty') class-attribute instance-attribute

SystemEdge

Bases: sgqlc.types.Type

Source code in src/libaudiothek/audiothek_schema.py
3925
3926
3927
3928
3929
3930
class SystemEdge(sgqlc.types.Type):
    __schema__ = audiothek_schema
    __field_names__ = ('cursor', 'node')
    cursor = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='cursor')
    node = sgqlc.types.Field('SystemInterface', graphql_name='node')

__field_names__ = ('cursor', 'node') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

cursor = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='cursor') class-attribute instance-attribute

node = sgqlc.types.Field('SystemInterface', graphql_name='node') class-attribute instance-attribute

SystemInterface

Bases: sgqlc.types.Interface

Source code in src/libaudiothek/audiothek_schema.py
3933
3934
3935
3936
3937
3938
class SystemInterface(sgqlc.types.Interface):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'base_id_prefix')
    id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id')
    base_id_prefix = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='baseIdPrefix')

__field_names__ = ('id', 'base_id_prefix') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

base_id_prefix = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='baseIdPrefix') class-attribute instance-attribute

id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') class-attribute instance-attribute

SystemRelationFilterB

Bases: sgqlc.types.Input

Source code in src/libaudiothek/audiothek_schema.py
1930
1931
1932
1933
1934
class SystemRelationFilterB(sgqlc.types.Input):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'exists')
    id = sgqlc.types.Field(IDFilterB, graphql_name='id')
    exists = sgqlc.types.Field(BooleanFilterB, graphql_name='exists')

__field_names__ = ('id', 'exists') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

exists = sgqlc.types.Field(BooleanFilterB, graphql_name='exists') class-attribute instance-attribute

id = sgqlc.types.Field(IDFilterB, graphql_name='id') class-attribute instance-attribute

Teaser

Bases: sgqlc.types.Interface

Source code in src/libaudiothek/audiothek_schema.py
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
class Teaser(sgqlc.types.Interface):
    __schema__ = audiothek_schema
    __field_names__ = ('id', 'title', 'synopsis', 'image', 'url',
                       'sharing_url', 'path', 'number_of_elements', 'tracking')
    id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id')
    title = sgqlc.types.Field(
        sgqlc.types.non_null(String), graphql_name='title')
    synopsis = sgqlc.types.Field(String, graphql_name='synopsis')
    image = sgqlc.types.Field(ImageType, graphql_name='image')
    url = sgqlc.types.Field(String, graphql_name='url', args=sgqlc.types.ArgDict((
        ('variant', sgqlc.types.Arg(UrlVariant, graphql_name='variant', default=None)),
    ))
    )
    sharing_url = sgqlc.types.Field(URL, graphql_name='sharingUrl')
    path = sgqlc.types.Field(String, graphql_name='path')
    number_of_elements = sgqlc.types.Field(
        Int, graphql_name='numberOfElements')
    tracking = sgqlc.types.Field(JSON, graphql_name='tracking')

__field_names__ = ('id', 'title', 'synopsis', 'image', 'url', 'sharing_url', 'path', 'number_of_elements', 'tracking') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') class-attribute instance-attribute

image = sgqlc.types.Field(ImageType, graphql_name='image') class-attribute instance-attribute

number_of_elements = sgqlc.types.Field(Int, graphql_name='numberOfElements') class-attribute instance-attribute

path = sgqlc.types.Field(String, graphql_name='path') class-attribute instance-attribute

sharing_url = sgqlc.types.Field(URL, graphql_name='sharingUrl') class-attribute instance-attribute

synopsis = sgqlc.types.Field(String, graphql_name='synopsis') class-attribute instance-attribute

title = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='title') class-attribute instance-attribute

tracking = sgqlc.types.Field(JSON, graphql_name='tracking') class-attribute instance-attribute

url = sgqlc.types.Field(String, graphql_name='url', args=sgqlc.types.ArgDict((('variant', sgqlc.types.Arg(UrlVariant, graphql_name='variant', default=None))))) class-attribute instance-attribute

TeaserTypeATG

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
256
257
258
259
class TeaserTypeATG(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('EditorialCategory', 'EditorialCollection',
                   'EventLivestream', 'Item', 'ProgramSet', 'SophoraTeaser')

__choices__ = ('EditorialCategory', 'EditorialCollection', 'EventLivestream', 'Item', 'ProgramSet', 'SophoraTeaser') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

Transcript

Bases: sgqlc.types.Type, Node

Source code in src/libaudiothek/audiothek_schema.py
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
class Transcript(sgqlc.types.Type, Node):
    __schema__ = audiothek_schema
    __field_names__ = ('item_id', 'xml', 'data',
                       'last_updated_at', 'item', 'start', 'end', 'text')
    item_id = sgqlc.types.Field(
        sgqlc.types.non_null(Int), graphql_name='itemId')
    xml = sgqlc.types.Field(String, graphql_name='xml')
    data = sgqlc.types.Field(JSON, graphql_name='data')
    last_updated_at = sgqlc.types.Field(
        sgqlc.types.non_null(Datetime), graphql_name='lastUpdatedAt')
    item = sgqlc.types.Field(Item, graphql_name='item')
    start = sgqlc.types.Field(String, graphql_name='start')
    end = sgqlc.types.Field(String, graphql_name='end')
    text = sgqlc.types.Field(String, graphql_name='text')

__field_names__ = ('item_id', 'xml', 'data', 'last_updated_at', 'item', 'start', 'end', 'text') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

data = sgqlc.types.Field(JSON, graphql_name='data') class-attribute instance-attribute

end = sgqlc.types.Field(String, graphql_name='end') class-attribute instance-attribute

item = sgqlc.types.Field(Item, graphql_name='item') class-attribute instance-attribute

item_id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='itemId') class-attribute instance-attribute

last_updated_at = sgqlc.types.Field(sgqlc.types.non_null(Datetime), graphql_name='lastUpdatedAt') class-attribute instance-attribute

start = sgqlc.types.Field(String, graphql_name='start') class-attribute instance-attribute

text = sgqlc.types.Field(String, graphql_name='text') class-attribute instance-attribute

xml = sgqlc.types.Field(String, graphql_name='xml') class-attribute instance-attribute

URI

Bases: sgqlc.types.Scalar

Source code in src/libaudiothek/audiothek_schema.py
262
263
class URI(sgqlc.types.Scalar):
    __schema__ = audiothek_schema

__schema__ = audiothek_schema class-attribute instance-attribute

URL

Bases: sgqlc.types.Scalar

Source code in src/libaudiothek/audiothek_schema.py
266
267
class URL(sgqlc.types.Scalar):
    __schema__ = audiothek_schema

__schema__ = audiothek_schema class-attribute instance-attribute

UrlVariant

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
270
271
272
class UrlVariant(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('API', 'SHARING', 'WEB')

__choices__ = ('API', 'SHARING', 'WEB') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute

WidgetDisplayVariant

Bases: sgqlc.types.Enum

Source code in src/libaudiothek/audiothek_schema.py
275
276
277
class WidgetDisplayVariant(sgqlc.types.Enum):
    __schema__ = audiothek_schema
    __choices__ = ('COLLAPSIBLE_GRID', 'DEFAULT', 'GRID', 'SLIDER')

__choices__ = ('COLLAPSIBLE_GRID', 'DEFAULT', 'GRID', 'SLIDER') class-attribute instance-attribute

__schema__ = audiothek_schema class-attribute instance-attribute