فهرست منبع

chore(dashboard): Disable fragment masking

Allows us to properly introspect fragment types
Michael Bromley 10 ماه پیش
والد
کامیت
63697f62a6
1فایلهای تغییر یافته به همراه2 افزوده شده و 1 حذف شده
  1. 2 1
      packages/dashboard/src/graphql/graphql.ts

+ 2 - 1
packages/dashboard/src/graphql/graphql.ts

@@ -1,7 +1,8 @@
-import { initGraphQLTada } from 'gql.tada';
 import type { introspection } from './graphql-env.d.ts';
+import { initGraphQLTada } from 'gql.tada';
 
 export const graphql = initGraphQLTada<{
+    disableMasking: true;
     introspection: introspection;
 }>();