Skip to content

Instantly share code, notes, and snippets.

@gys-dev
Created November 6, 2021 13:56
Show Gist options
  • Save gys-dev/e29e2f41ce189f92a2eedc224d79f164 to your computer and use it in GitHub Desktop.
Save gys-dev/e29e2f41ce189f92a2eedc224d79f164 to your computer and use it in GitHub Desktop.
- (NSString *)operationDefinition{
return [NSString stringWithFormat:
@"query getListCollection{"
" collectionOfCategory(category_id:%d,page: %d, where: %@) {"
" data {"
" name"
" id"
" description"
" image"
" classes {"
" id"
" name"
" image"
" video_url"
" }"
" }"
" }"
"}",self.idCategory, 1, @"null"];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment