in src/rule-graphql-naming.js [128:151]
loc: getLoc(context, node, name)
});
}
break;
}
default:
}
});
},
CallExpression(node) {
if (!isCreateContainerCall(node)) {
return;
}
const fragments = node.arguments[1];
if (fragments.type === 'ObjectExpression') {
fragments.properties.forEach(property => {
if (
property.type === 'Property' &&
property.key.type === 'Identifier' &&
property.computed === false &&
property.value.type === 'TaggedTemplateExpression'
) {
if (!isGraphQLTag(property.value.tag)) {
context.report({