open-codetree / graphql /definitions /tag.definition.ts
matt HOFFNER
init
3c3f089
raw
history blame contribute delete
161 Bytes
import { gql } from "@apollo/client";
export const TagsQuery = gql(`query Tags {
tags {
data {
id
value
}
message
status
}
}`);