Jump to Content
SkylarkAPI ReferenceRoadmap
API ReferenceRecipesGuidesChangelog
API ReferenceRoadmapLog InSkylark
Log In
API ReferenceRecipesGuidesChangelog

Documentation

  • Welcome to Skylark

Quick Start Guide

  • Quick Start Introduction
  • Lessons
    • Lesson 1: Data Model 101
    • Lesson 2: Request Authentication
    • Lesson 3: Modifying Your Data Model
    • Lesson 4: Setting Up Availability
    • Lesson 5: Creating Availability Rules
    • Lesson 6: Creating Objects
    • Lesson 7: Retrieving An Object

Authentication

  • Introduction to Authentication

Schema Configuration

  • Introduction to Schema Configuration
  • Schema Management
    • Manage Data Model
    • Manage Schema Versioning
    • Manage Schema For Configuration Version
    • Manage Object Types
    • Manage Fields
    • Manage Enums
    • Manage Relationships
    • Inspect Versions

Objects

  • Introduction to Objects
  • Object Management
    • Create Objects
    • Get Objects
    • List Objects
    • Update Objects
    • Delete Objects

Relationships

  • Introduction to Relationships
  • Relationship Management
    • Create Related Objects
    • Get Related Objects
    • Link Existing Objects
    • Unlink Objects

Sets

  • Introduction to Sets
  • Set Management
    • Create Sets
    • Get Sets
    • List Sets
    • Update Sets
    • Delete Sets

Availability

  • Introduction to Availability
  • Availability Rule Management
    • Create Availability Rule
    • Get Availability Rule
    • List Availability Rules
    • Update Availability Rule
    • Delete Availability Rule
    • View Object Availability Summary
  • Dimensions
    • Manage Dimensions
    • Manage Dimension Values
  • Assign Availability
    • Link New Availability
    • Link Existing Availability
    • Unlink Existing Availability
  • Query Available Objects
    • Add Input Dimensions To Query
    • Ignore Availability
    • Time Travel

Images

  • Introduction to Images
  • Image Management
    • Create Image
    • Get Image

Search

  • Search Content
  • Edit Searchable Attributes

Translations

  • Introduction to Translations
  • Translation Management
    • Define Language
    • Add Translation
    • Update Existing Translation
    • Get Alternative Translations
    • Delete Translation

Caching

  • Introduction to caching
Powered by 

Define Language

Suggest Edits

When creating an new object you can see the language of the object using the language field.

Defining a language when creating an object

mutation MyMutation {
  createEpisode(
        episode: {title: "Titre Français"}, 
        language: "fr-FR"
  ) {
    title
  }
}

Updated 4 months ago


  • Table of Contents
    • Defining a language when creating an object