function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Iago SilvaIago Silva 

Salesforce GraphQL

I know that GraphQL is not fully released but I'd like to know if there is a way to test it in my developer org. Do I have to enable it somewhere? 

'm already following the instructions written in https://developer.salesforce.com/docs/platform/graphql/guide/get-started.html but in Postman I receive the following error:  

User-added image
Best Answer chosen by Iago Silva
SwethaSwetha (Salesforce Developers) 
HI Iago,

Does it give the same result when you try below query?
query accounts {
  uiapi {
    query {
      Account {
        edges {
          node {
            Id
            Name {
              value
            }
          }
        }
      }
    }
  }
}

Thanks

All Answers

SwethaSwetha (Salesforce Developers) 
HI Iago,

Does it give the same result when you try below query?
query accounts {
  uiapi {
    query {
      Account {
        edges {
          node {
            Id
            Name {
              value
            }
          }
        }
      }
    }
  }
}

Thanks
This was selected as the best answer
Iago SilvaIago Silva

Hi Swetha, it worked !!

Is not right the graphQL query I was running?

SwethaSwetha (Salesforce Developers) 
Thanks for confirming. As I suspected, it looks like an issue with your graphQL query syntax.