Those “relationships” are setup like ``` LineIt...
# random
j
Those “relationships” are setup like
Copy code
LineItem: {
    id: root => root._id || root.id,
    product: async ({ Product_SKU__c }) => {
      let Product = await sf.sobject('Product2').retrieve(Product_SKU__c);

      return Object.assign({ id: Product_SKU__c }, SerializeRecord(Product));
    }
  },