If this is my GraphQL query:
query {
content(
id:35, mediaVersions: ["small", "medium", "large"])
{
id,title, type, content_type, created, item_count,
sortOptions {
label, sort
},
comments {
fname, lname, email, user_id, created, content
},
items {
id, title, caption, identifier, rank, media {
version, url, tag, width, height, mimetype
}
}
}
}
How do I check for access rights (public vs private) to the individual member objects?
Can it be checked with a Lightbox query?