Skip to content

Instantly share code, notes, and snippets.

@ehatricksmith
Created November 22, 2022 04:05
Show Gist options
  • Save ehatricksmith/613b245b792fd47c31e75ee1ad59a62c to your computer and use it in GitHub Desktop.
Save ehatricksmith/613b245b792fd47c31e75ee1ad59a62c to your computer and use it in GitHub Desktop.
const EXPORT_TAGS_QUERY = gql`
query ExportTagsDataQuery($id: UUID!, $offset: Int, $limit: Int!) {
project: projectById(id: $id) {
id
tags: tagsByProjectId(condition: { deleted: false, deletedCascade: false }, offset: $offset, first: $limit) {
totalCount
nodes {
id
title
color
__typename
}
}
}
}
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment