Update Sets

Updating a set is done via the updateSkylarkSet mutation.

Re-order set content

It is possible to reorder the content of a set using the reposition input when updating the set.

mutation {
  updateSkylarkSet(
    uid: "48d1e078-4ec0-47df-afd9-7a993e4d822b"
    set: {
      content: {
        Episode: {
          reposition: [
            { uid: "1c379e29-27f0-446e-8dcc-4c7e54ea772f", position: 1 }
            { uid: "2bcac925-3d9d-4f27-a361-d93b8d395d40", position: 2 }
          ]
        }
      }
    }
  ) {
    uid
  }
}