I´m using GraphQL and graphql-relay
in a project where I have several connection definitions used in different types and some of the connection definitions are repeated around types.
My first approach for handling connection definition was:
import { connectionDefinitions } from 'graphql-relay';
import { CustomerType } from './Customer/types';
const { connectionType: CustomerConnectionType } = connectionDefinitions( { nodeType: CustomerType });
That was placed in different GraphQL types every time I needed that connection.
After some issues I found out that I cannot define more than once a connection definition in the whole project, causing an Schema must contain unique named types but contains multiple types named CustomerType
.
So, I decided to build a central place to define all the connect definitions and to export it to all GraphQL types that needs it in a file named relaydefs.js
:
import { connectionDefinitions } from 'graphql-relay';
import { CustomerType } from './Customer/types';
import { ItemType } from './Item/types';
import { StockType } from './Stock/types';
import { PriceListType } from './PriceItem/types';
export const { connectionType: CustomerConnectionType } = connectionDefinitions( { nodeType: CustomerType });
export const { connectionType: ItemConnectionType } = connectionDefinitions( { nodeType: ItemType });
export const { connectionType: StockConnectionType } = connectionDefinitions( { nodeType: StockType });
export const { connectionType: PriceListConnectionType } = connectionDefinitions( { nodeType: PriceListType });
And on every module issuing a:
import { CustomerConnectionType } from './relaydefs';
Well, the import is not working, as only the first item is being imported (all others retrieves undefined
).
I´m sure this is a pure javascript import problem, not relay or GraphQL, but I need help to:
a) How to properly import each define connection type ?
b) Is this a good approach in a case where I have a connection type used in multiple types ? Any better solution ?