This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| type Query { | |
| cakes: [Cake!]! | |
| cake(id: ID!): Cake | |
| } | |
| type Mutation { | |
| createCake(input: CreateCakeInput!): Cake! | |
| } | |
| type Cake { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name | phone | company | ||
|---|---|---|---|---|
| John Doe | john.doe@example.com | +1-555-0123 | Acme Corporation | |
| Jane Smith | jane.smith@example.com | +1-555-0124 | Tech Solutions Inc | |
| Bob Johnson | bob.johnson@example.com | +1-555-0125 | Global Enterprises | |
| Alice Brown | alice.brown@example.com | +1-555-0126 | Startup Co | |
| Charlie Wilson | charlie.wilson@example.com | +1-555-0127 | Enterprise Ltd | |
| David Lee | david.lee@example.com | +1-555-0128 | Innovation Labs | |
| Emma Davis | emma.davis@example.com | +1-555-0129 | Digital Agency | |
| Frank Miller | frank.miller@example.com | +1-555-0130 | Marketing Pro | |
| Grace Taylor | grace.taylor@example.com | +1-555-0131 | Consulting Group |