I´m programing in javascript using Relay and I´ve found the following statement:
const { connectionType: UsersConnectionType } = connectionDefinitions( { nodeType: UserType });
What does exactly the { connectionType: CustomerConnectionType }
means ? How to reference that variable later and how to export it if I have two more of those varibles, like:
const { connectionType: CustomerConnectionType } = connectionDefinitions( { nodeType: CustomerType });
const { connectionType: ItemConnectionType } = connectionDefinitions( { nodeType: ItemType });
I think I just found it - it's a Destructuring assignment. There's also other forms of it with arrays, etc. It's an ECMAScript 6 thing.
Frankly I think the syntax is confusing - I would have used
var { foo: p, bar: q}
instead (or a completely different syntax entirely, so it doesn't look confusingly similar to an object initialization), but I suppose they had their reasons.In your case the line
is actually the equivalent of
just with more bling and confusion. :)