Ignore Availability
Similar to legacy Skylark’s ?all=true
query, the optional ignore_availability
argument can be passed to queries to completely skip the availability querying and just return the object regardless.
Ignore Availability Header
It's also possible to specify whether to ignore availability using the header
x-ignore-availability
, with the valuetrue
orfalse
.The header takes priority over the argument.
query MyQuery {
getEpisode(
uid: "73c18d10-cec4-4237-ae96-9ecdd34d55f8",
ignore_availability: true
) {
uid
title
}
}
Updated 1 day ago