mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-19 13:31:43 +03:00
4f835623b1
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/4400 GitOrigin-RevId: 2d90542f95ef4dad70c8dfe1ca3b4c1f3bdaa527
47 lines
1.0 KiB
JSON
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"
|
|
}
|
|
]
|
|
}
|
|
]
|