To achieve exporting all links within all admin-defined tables across various experiments in the application, you can utilize the endpoint POST/entities/search search entities. Detailed instructions are provided below:
-
- Go to the Swagger page and find the endpoint POST/entities/search search entities.
- Fill in the parameters based on your requirements (such as page limit, include, etc.).
- In the Request body, provide the following query and execute it. You will receive a list of admin-defined tables and the links attached to them.
{
"query": {
"$and": [
{
"$match": {
"field": "type",
"value": "grid",
"mode": "keyword"
}
},
{
"$and": [
{
"$exists": {
"field": "provide the field name that has links in it",
"in": "tags",
"as": "text"
}
}
]
}
]
}
}