OBJECT
Query
link GraphQL Schema definition
- type Query {
- # Return list of soft deleted items
- : [Archive!]!
- # Return list of all Availabilities
- #
- # Arguments
- # trashed: Allows to filter if trashed elements should be
- # fetched.
- (: Trashed): [Availability!]!
- # Return the Availability by ID or by slug
- #
- # Arguments
- # id: ID of the record
- # slug: slug of the record
- # trashed: Allows to filter if trashed elements should be
- # fetched.
- (: ID, : String, : Trashed): Availability
- # Return list of all Bottles
- #
- # Arguments
- # familyId: Allows to filter Bottles by Bottle Family ID
- # isPublished: Allows to filter Bottles by published state
- # isPaused: Allows to filter Bottles by paused state
- # trashed: Allows to filter if trashed elements should be
- # fetched.
- (
- : Int,
- : Boolean,
- : Boolean,
- : Trashed
- ): [Bottle!]!
- # Return the Bottle by ID
- #
- # Arguments
- # id: ID of the record
- # trashed: Allows to filter if trashed elements should be
- # fetched.
- (: ID, : Trashed): Bottle
- # Return the total count of the Bottles (only published, not paused and not soft
- # deleted)
- : Int!
- # Return list of all Bottle Families
- #
- # Arguments
- # manufacturer: Allows to filter Bottle Families by Bottle
- # Manufacturer ID
- # isPublished: Allows to filter Bottle Families by published
- # state
- # isPaused: Allows to filter Bottle Families by paused state
- # trashed: Allows to filter if trashed elements should be
- # fetched.
- (
- : Int,
- : Boolean,
- : Boolean,
- : Trashed
- ): [BottleFamily!]!
- # Return the Bottle Family by ID or slug
- #
- # Arguments
- # id: ID of the record
- # slug: Slug of the record
- # trashed: Allows to filter if trashed elements should be
- # fetched.
- (: ID, : String, : Trashed): BottleFamily
- # Return the total count of the Bottle Families (only published, not paused and
- # not soft deleted)
- : Int!
- # Return list of all Bottle Manufacturers
- #
- # Arguments
- # isPaused: Allows to filter Bottle Manufacturers by paused state
- # trashed: Allows to filter if trashed elements should be
- # fetched.
- (: Boolean, : Trashed): [BottleManufacturer!]!
- # Return the Bottle Manufacturer by ID or slug
- #
- # Arguments
- # id: ID of the record
- # slug: Slug of the record
- # trashed: Allows to filter if trashed elements should be
- # fetched.
- (: ID, : String, : Trashed): BottleManufacturer
- # Return list of all Bottle Sections
- #
- # Arguments
- # trashed: Allows to filter if trashed elements should be
- # fetched.
- (: Trashed): [BottleSection!]!
- # Return the Bottle Section by ID or slug
- #
- # Arguments
- # id: ID of the record
- # slug: Slug of the record
- # trashed: Allows to filter if trashed elements should be
- # fetched.
- (: ID, : String, : Trashed): BottleSection
- # Return list of all Bottle Shapes
- #
- # Arguments
- # trashed: Allows to filter if trashed elements should be
- # fetched.
- (: Trashed): [BottleShape!]!
- # Return the Bottle Shape by ID or slug
- #
- # Arguments
- # id: ID of the record
- # slug: Slug of the record
- # trashed: Allows to filter if trashed elements should be
- # fetched.
- (: ID, : String, : Trashed): BottleShape
- # Return list of all Changelog events
- #
- # Arguments
- # orderBy: Sorts by created_at
- # first: Limits number of fetched elements.
- # page: The offset from which elements are returned.
- (: [ChangelogOrderByOrderByClause!], : Int, : Int): ChangelogPaginator
- # Return list of all Closures
- #
- # Arguments
- # trashed: Allows to filter if trashed elements should be
- # fetched.
- (: Trashed): [Closure!]!
- # Return the Closure by ID or slug
- #
- # Arguments
- # id: ID of the record
- # slug: Slug of the record
- # trashed: Allows to filter if trashed elements should be
- # fetched.
- (: ID, : String, : Trashed): Closure
- # Return list for Volume autocomplete
- #
- # Arguments
- # orderBy: Sorts by value names or number of usages
- (: [VolumeEnumOrderByOrderByClause!]): [EnumVolume!]!
- # Return list for Country autocomplete
- #
- # Arguments
- # orderBy: Sorts by value names or number of usages
- (: [CountryEnumOrderByOrderByClause!]): [EnumCountry!]!
- # Return list for Colour name autocomplete
- #
- # Arguments
- # orderBy: Sorts by value names or number of usages
- # glassColour: The Glass Colour ID to filter names for the Glass
- # Colour
- (
- : [ColourNameEnumOrderByOrderByClause!],
- : ID
- ): [EnumColourName!]!
- # Return list of all Files
- : [File!]!
- # Return the File by ID
- #
- # Arguments
- # id: ID of the record
- (: ID!): File
- # Return list of all Glass Colours
- #
- # Arguments
- # trashed: Allows to filter if trashed elements should be
- # fetched.
- (: Trashed): [GlassColour!]!
- # Return the Glass Colour by ID or slug
- #
- # Arguments
- # id: ID of the record
- # slug: Slug of the record
- # trashed: Allows to filter if trashed elements should be
- # fetched.
- (: ID, : String, : Trashed): GlassColour
- # Return list of all Images
- #
- # Arguments
- # familyId: Allows to filter Images by Bottle Family ID
- # isPublished: Allows to filter Images by published state
- # isPaused: Allows to filter Images by paused state
- # trashed: Allows to filter if trashed elements should be
- # fetched.
- (: Int, : Boolean, : Boolean, : Trashed): [Image!]!
- # Return the Image by ID
- #
- # Arguments
- # id: ID of the record
- # trashed: Allows to filter if trashed elements should be
- # fetched.
- (: ID, : Trashed): Image
- # Return list of all Medias
- : [Media!]!
- # Return the Media by ID
- #
- # Arguments
- # id: ID of the record
- (: ID!): Media
- # Return list of all References
- #
- # Arguments
- # familyId: Allows to filter References by Bottle Family ID
- # isPublished: Allows to filter References by published state
- # isPaused: Allows to filter References by paused state
- # trashed: Allows to filter if trashed elements should be
- # fetched.
- (
- : ID,
- : Boolean,
- : Boolean,
- : Trashed
- ): [Reference!]!
- # Return the Reference by ID
- #
- # Arguments
- # id: ID of the record
- # trashed: Allows to filter if trashed elements should be
- # fetched.
- (: ID, : Trashed): Reference
- # Return list of all Reference Categories
- #
- # Arguments
- # trashed: Allows to filter if trashed elements should be
- # fetched.
- (: Trashed): [ReferenceCategory!]!
- # Return the Reference Category by ID or slug
- #
- # Arguments
- # id: ID of the record
- # slug: Slug of the record
- # trashed: Allows to filter if trashed elements should be
- # fetched.
- (: ID, : String, : Trashed): ReferenceCategory
- # Get slug by post name
- #
- # Arguments
- # postType: Item post type
- # title: Item post name
- (: String!, : String!): Slug!
- # Check if slug is valid
- #
- # Arguments
- # postType: Item post type
- # slug: Item slug
- (: String!, : String!): SlugValidity!
- # Return list of all Suitabilities
- #
- # Arguments
- # trashed: Allows to filter if trashed elements should be
- # fetched.
- (: Trashed): [Suitability!]!
- # Return the Bottle Suitability by ID or slug
- #
- # Arguments
- # id: ID of the record
- # slug: Slug of the record
- # trashed: Allows to filter if trashed elements should be
- # fetched.
- (: ID, : String, : Trashed): Suitability
- # Return list of all Vinolok Sizes
- #
- # Arguments
- # trashed: Allows to filter if trashed elements should be
- # fetched.
- (: Trashed): [VinolokSize!]!
- # Return the Vinolok Size by ID or slug
- #
- # Arguments
- # id: ID of the record
- # slug: Slug of the record
- # trashed: Allows to filter if trashed elements should be
- # fetched.
- (: ID, : String, : Trashed): VinolokSize
- # Get heartbeat response
- : HeartBeatResponse!
- }
link Require by
This element is not required by anyone