Right now I have this tag below. It's static and will always get a comment with the id of 3. Is there a possible way to put a variable inside this graphQL-tag. So I can re-use the graphQL-tag, and just change the variable ID?
export const GET_COMMENTS: any = gql`
    {
        comments(id: 3) {
            userId,
            text,
            creationDate,
      }
    }
`;
Thanks in advance!
                        
Yeah, you can pass variables in the GQL queries.
$xyzis kind of notation or variable name to pass variables in GQL.