goods.graphql 205 B

1234567891011121314
  1. type Query{
  2. goodDetails(id: ID!): Goods!
  3. }
  4. type Goods {
  5. id: ID!
  6. serialNo: String!
  7. name: String!
  8. price: Float!
  9. itemCount: Int!
  10. img: String!
  11. desc: String
  12. detail: String
  13. }