graphql-engine/server/tests-dc-api/Test/Data/schema-tables.json
Daniel Chambers 4f835623b1 Rename Data Wrapper to Data Connector [GDW-89]
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4400
GitOrigin-RevId: 2d90542f95ef4dad70c8dfe1ca3b4c1f3bdaa527
2022-05-02 05:04:07 +00:00

47 lines
1.0 KiB
JSON

[
{
"name": "artists",
"primary_key": "id",
"description": "Collection of artists of music",
"columns": [
{
"name": "id",
"type": "number",
"nullable": false,
"description": "Artist primary key identifier"
},
{
"name": "name",
"type": "string",
"nullable": false,
"description": "The name of the artist"
}
]
},
{
"name": "albums",
"primary_key": "id",
"description": "Collection of music albums created by artists",
"columns": [
{
"name": "id",
"type": "number",
"nullable": false,
"description": "Album primary key identifier"
},
{
"name": "title",
"type": "string",
"nullable": false,
"description": "The title of the album"
},
{
"name": "artist_id",
"type": "number",
"nullable": false,
"description": "The ID of the artist that created this album"
}
]
}
]