May you help me to know how could I get account data from accountId?
i used this query but it doesn’t work
query {
account(id: "your_account_id") {
request_id
complexity
data {
id
email
}
}
}
May you help me to know how could I get account data from accountId?
i used this query but it doesn’t work
query {
account(id: "your_account_id") {
request_id
complexity
data {
id
email
}
}
}
Hey @ahmadMamdouh,
Thanks for reaching out!
When querying using account, the account query should look something like this:
{
account{
request_id
complexity
data {
id
legacy_id
email
}
}
}
Please let me know if you have any questions or concerns.
Best,
RayanP