---
title: get industry by table
tags: table,live
---
GraphQL Endpoint
`POST : https://graph.fastconnect.calypsu.com/v1/graphql`
Request Headers
```
content-type : application/json
x-hasura-admin-secret : .....
```
**Request**
```
{
industry {
icon
typeOfIndustry
skills {
skill
id
}
}
}
```
**Description**
skills {
skill
id
}
**Response**
```
{
"data": {
"industry": [
{
"icon": "url",
"typeOfIndustry": "it",
"skills": [
{
"skill": "software",
"id": "0073afd6-fcd1-476a-a079-9e7aaf308b4c"
},
{
"skill": "app",
"id": "3134ddeb-fc99-44fa-87bd-4adc8331558f"
},
{
"skill": "web",
"id": "854d160f-1385-4da8-928f-408f9c425d02"
}
]
},
{
"icon": "urlurl",
"typeOfIndustry": "hos",
"skills": [
{
"skill": "med",
"id": "28556abb-f17b-4e64-b9b8-f0b4d2341165"
},
{
"skill": "nur",
"id": "ff34767c-1b66-4a09-8a4e-61f31b2e596d"
}
]
}
]
}
}
```