How to use the isEnabled function from graphql
Find comprehensive JavaScript graphql.isEnabled code examples handpicked from public code repositorys.
1297 1298 1299 1300 1301 1302 1303 1304 1305 1306
} if (idField.input.update !== undefined) { throw new Error(`The idField on a list must not define an update GraphQL input but the idField for ${list.listKey} does define one`); } if (idField.graphql.isEnabled.read === false) { throw new Error(`The idField on a list must not have graphql.isEnabled.read be set to false but ${list.listKey} does`); } if (idField.output.type.kind !== 'non-null' || idField.output.type.of !== apiWithoutContext.ID) { throw new Error(`The idField on a list must define a GraphQL output field with a non-nullable ID GraphQL scalar type but the idField for ${list.listKey} defines the type ${idField.output.type.graphQLType.toString()}`); }
0
0
1
+ 8 other calls in file
graphql.GraphQLNonNull is the most popular function in graphql (4226 examples)