schema.graphql type Market @model @searchable { id : ID ! name : String ! products : [ Product ] @connection ( name : " MarketProducts " , sortField : " createdAt " ) tags : [ String ] owner : String ! createdAt : String } type Product @model @auth ( rules : [{ allow : owner , ident