entria / entria-graphql

GraphQL Generators for Entria Projects
MIT License
19 stars 1 forks source link

handle nested #27

Open sibelius opened 6 years ago

sibelius commented 6 years ago
dimensions: {
      weight: {
        type: Number,
        min: 1,
        description: 'Product weight in grams',
      },
      length: {
        type: Number,
        min: 1,
        description: 'Product length in millimeters',
      },
      width: {
        type: Number,
        min: 1,
        description: 'Product width in millimeters',
      },
      height: {
        type: Number,
        min: 1,
        description: 'Product height in millimeters',
      },
    },