Jump to Content
SkylarkAPI ReferenceSkylark User Guide
API ReferenceRecipesChangelog
API ReferenceSkylark User GuideLog InSkylark
API Reference
Log In
API ReferenceRecipesChangelog

Welcome

  • Welcome to Skylark

Quick Start Guide

  • Quick Start Introduction
  • Lessons
    • Lesson 1: Data Model 101
    • Lesson 2: Request Authentication
    • Lesson 3: Modify Your Data Model
    • Lesson 4: Set Up Availability
    • Lesson 5: Create Availability Rules
    • Lesson 6: Create Objects
    • Lesson 7: Retrieve An Object

API Conventions

  • API Conventions
    • Request Authentication
    • Roles and permissions
    • Headers
    • Versioning and Drafts
    • Background Processing
    • API Key Management

Content Modelling

  • Introduction to Content Modelling
  • Content Model 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
      • Upsert 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 Rules
    • Get Availability Rules
    • List Availability Rules
    • Update Availability Rules
    • Delete Availability Rules
    • View Object Availability Summary
  • Assign Availability Rules
    • Link New Availability Rules
    • Link Existing Availability Rules
    • Unlink Existing Availability Rules
  • Query Available Objects
    • Add Availability Dimensions To Query
    • Ignore Availability
    • Time Travel
  • Dimensions
    • Manage Dimensions
    • Manage Dimension Values
  • Availability Inheritance
  • Timezones

Images

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

Search

  • Search Content
  • Edit Searchable Attributes

INTEGRATIONS

  • Introduction to Integrations
  • Create Incoming Webhook URL
  • Integrations Per Provider
    • Bitmovin Integration
    • Mux Integration
    • JW Player Integration
    • Cloudinary Integration

Translations

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

Caching

  • Introduction to Caching
  • Purge Cache
  • Update Cache Rules
Powered by 

Define Languages

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 createEpisode {
  createEpisode(
    	episode: {title: "Titre Français"}, 
    	language: "fr-FR"
  ) {
    title
  }
}

Updated 12 months ago


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