Skip to main content

I'm trying to see all the data related with my database (table) for all my organizations.I'm using this query bellow:

Can anyone support me with this? Because I can't see the record

Ā 

{""query"": ""{ organizations { id tables{edges{node{id table_fields{id label {id name} } table_records{ edges {node {id title parent_relations {id repo }}}}}}}}}""}"

Ā 

Hello Nigel! Here is an example of how you should create the query. (There must be parameters added to specify what organization you want to look at)Ā 

{ 
organization (id:123456) {
id
tables {
edges {
node {
id
table_fields {
id
label
}
labels{
name
id
color
}
table_records {
edges {
node {
id
title
parent_relations {
id
repo
}
}
}
}
}
}
}
}
}

Also, the ā€œlabelā€ attribute inside the ā€œtable_fieldsā€ object is the fieldā€™s name, and not actual color labels. I added that section below the table fields object so that you can see those as well.


Reply