Ignore Availability
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 getEpisode {
getEpisode(
uid: "73c18d10-cec4-4237-ae96-9ecdd34d55f8",
ignore_availability: true
) {
uid
title
}
}
Updated 6 months ago