forked from extern/bruno
103 lines
3.2 KiB
JavaScript
103 lines
3.2 KiB
JavaScript
const collection = {
|
|
"id": nanoid(),
|
|
"name": "spacex",
|
|
"items": [
|
|
{
|
|
"id": nanoid(),
|
|
"name": "Launches",
|
|
"depth": 1,
|
|
"items": [
|
|
{
|
|
"id": nanoid(),
|
|
"depth": 2,
|
|
"name": "Capsules",
|
|
"request": {
|
|
"type": "graphql",
|
|
"url": "https://api.spacex.land/graphql/",
|
|
"method": "POST",
|
|
"headers": [],
|
|
"body": {
|
|
"mimeType": "application/graphql",
|
|
"graphql": {
|
|
"query": "{\n launchesPast(limit: 10) {\n mission_name\n launch_date_local\n launch_site {\n site_name_long\n }\n links {\n article_link\n video_link\n }\n rocket {\n rocket_name\n first_stage {\n cores {\n flight\n core {\n reuse_count\n status\n }\n }\n }\n second_stage {\n payloads {\n payload_type\n payload_mass_kg\n payload_mass_lbs\n }\n }\n }\n ships {\n name\n home_port\n image\n }\n }\n}",
|
|
"variables": ""
|
|
}
|
|
}
|
|
},
|
|
"response": null
|
|
},
|
|
{
|
|
"id": nanoid(),
|
|
"depth": 2,
|
|
"name": "Missions",
|
|
"request": {
|
|
"type": "graphql",
|
|
"url": "https://api.spacex.land/graphql/",
|
|
"method": "POST",
|
|
"headers": [],
|
|
"body": {
|
|
"mimeType": "application/graphql",
|
|
"graphql": {
|
|
"query": "{\n launches {\n launch_site {\n site_id\n site_name\n }\n launch_success\n }\n}",
|
|
"variables": ""
|
|
}
|
|
}
|
|
},
|
|
"response": null
|
|
}
|
|
]
|
|
}
|
|
]
|
|
};
|
|
|
|
const collection2 = {
|
|
"id": nanoid(),
|
|
"name": "notebase",
|
|
"items": [
|
|
{
|
|
"id": nanoid(),
|
|
"name": "Notes",
|
|
"depth": 1,
|
|
"items": [
|
|
{
|
|
"id": nanoid(),
|
|
"depth": 2,
|
|
"name": "Create",
|
|
"request": {
|
|
"type": "graphql",
|
|
"url": "https://api.spacex.land/graphql/",
|
|
"method": "POST",
|
|
"headers": [],
|
|
"body": {
|
|
"mimeType": "application/graphql",
|
|
"graphql": {
|
|
"query": "{\n launchesPast(limit: 10) {\n mission_name\n launch_date_local\n launch_site {\n site_name_long\n }\n links {\n article_link\n video_link\n }\n rocket {\n rocket_name\n first_stage {\n cores {\n flight\n core {\n reuse_count\n status\n }\n }\n }\n second_stage {\n payloads {\n payload_type\n payload_mass_kg\n payload_mass_lbs\n }\n }\n }\n ships {\n name\n home_port\n image\n }\n }\n}",
|
|
"variables": ""
|
|
}
|
|
}
|
|
},
|
|
"response": null
|
|
},
|
|
{
|
|
"id": nanoid(),
|
|
"depth": 2,
|
|
"name": "Update",
|
|
"request": {
|
|
"type": "graphql",
|
|
"url": "https://api.spacex.land/graphql/",
|
|
"method": "POST",
|
|
"headers": [],
|
|
"body": {
|
|
"mimeType": "application/graphql",
|
|
"graphql": {
|
|
"query": "{\n launches {\n launch_site {\n site_id\n site_name\n }\n launch_success\n }\n}",
|
|
"variables": ""
|
|
}
|
|
}
|
|
},
|
|
"response": null
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}; |