···11+---
22+'@0no-co/graphqlsp': major
33+---
44+55+Remove `fragment-checking` from tagged-templates due to issues with barrel-file exports and flip defaults for field usage and import tracking with call-expressions
+8-5
README.md
···60606161**Optional**
62626363-- `template` the shape of your template, by default `gql` and `graphql` are respected
6464-- `templateIsCallExpression` this tells our client that you are using `graphql('doc')`
6363+- `template` add an additional template to the defaults `gql` and `graphql`
6464+- `templateIsCallExpression` this tells our client that you are using `graphql('doc')` (default: true)
6565+ when using `false` it will look for tagged template literals
6566- `shouldCheckForColocatedFragments` when turned on, this will scan your imports to find
6666- unused fragments and provide a message notifying you about them
6767+ unused fragments and provide a message notifying you about them (only works with call-expressions, default: true)
6768- `trackFieldUsage` this only works with the client-preset, when turned on it will warn you about
6868- unused fields within the same file.
6969+ unused fields within the same file. (only works with call-expressions, default: true)
69707071### GraphQL Code Generator client-preset
7172···7980 "name": "@0no-co/graphqlsp",
8081 "schema": "./schema.graphql",
8182 "disableTypegen": true,
8383+ "templateIsCallExpression": true,
8284 "shouldCheckForColocatedFragments": true,
8383- "trackFieldUsage": true
8585+ "trackFieldUsage": true,
8686+ "template": "graphql"
8487 }
8588 ]
8689 }
+5-4
packages/graphqlsp/README.md
···60606161**Optional**
62626363-- `template` the shape of your template, by default `gql`
6464-- `templateIsCallExpression` this tells our client that you are using `graphql('doc')`
6363+- `template` add an additional template to the defaults `gql` and `graphql`
6464+- `templateIsCallExpression` this tells our client that you are using `graphql('doc')` (default: true)
6565+ when using `false` it will look for tagged template literals
6566- `shouldCheckForColocatedFragments` when turned on, this will scan your imports to find
6666- unused fragments and provide a message notifying you about them
6767+ unused fragments and provide a message notifying you about them (only works with call-expressions, default: true)
6768- `trackFieldUsage` this only works with the client-preset, when turned on it will warn you about
6868- unused fields within the same file.
6969+ unused fields within the same file. (only works with call-expressions, default: true)
69707071### GraphQL Code Generator client-preset
7172