LanguageVersion
(OBJECT)
Language version
link GraphQL Schema definition
- type LanguageVersion {
- # internal ID
- ID! :
- # 2-letter ISO code (country code)
- String! :
- # country name
- String! :
- # default currency used for this language version / country
- Currency :
- # Time zone
- String :
- # Time format
- String :
- # Date format
- String :
- # is visible on eshop
- Boolean! :
- # 2-letter ISO code of language of system components
- # as supported by BizWebs platform
- String! :
- # company assigned to invoice orders from this language version
- InvoicingCompany :
- }
link Require by
- CategoryCategory of products
- OrderOrder detail
- Query Querying retrieves data (read access). Batching of multiple queries is not supported with this API. To modify data or perform operations @see Mutation defintion. As of GraphQL nature, for each query you need to specify fields returned. To make this simpler you may use predefined fragments of data (default datasets) which honor the _<ObjectName> convention. You may combine predefined fragments with specific field enumeration in your queries. @see fragments.graphql You may need to distinguish between cursors i.e. pageable lists of items (SomeobjectList objects) returned and simple sets of items (array of objects). General rule is that lists are used for 'content generated by public' and are retrieved by getObjectList queries, simple sets are used for 'items created/managed by administrator' and retrieved by listObjects calls. Please note for cursors you may not request more than 30 items at once (i.e. page size is limited to max. 30 items). Querying retrieves data (read access).