Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save SaraVieira/df05da4d46457aaa1ddb14918164d2f0 to your computer and use it in GitHub Desktop.
Save SaraVieira/df05da4d46457aaa1ddb14918164d2f0 to your computer and use it in GitHub Desktop.
query allVideos($first: Int, $after: String, $search: String, $duration: Int) {
allVideoses(first: $first, after: $after, orderBy: createdAt_DESC, filter: {AND: [{OR: [{link_contains: $search}, {name_contains: $search}, {tags_some: {name_contains: $search}}, {speaker_some: {name_contains: $search}}]}, {AND: [{isPublished: true}, {duration_lte: $duration}]}]}) {
id
speaker {
id
name
}
description
link
name
duration
tags {
name
id
}
}
}
{"first": 10, "search": "" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment