Here is where you will find any major updates that may affect your usage of the API.
Please check to ensure you remain up to date! We will also do our best to get in touch with users of specific fields that may change as we work to continuously improve Nexar and the experience for the users of our API.
Updates
Format of IDs is changing!
`desProjectById`will accept as an input both GRID, along with encoded NodeIds.
The returned ID will be GRID.
`desProjectsByGrids` is deprecated, and will soon be removed.
`desProjectsByIds` will tbe the replacement, and works the same as `desProjectById` accepting both GRIDs and NodeIds as input, and returning GRIDs.
// The following two queries are equivalent query GetProjectUsingNodeId { desProjectById(id:"RGVzUHJvamVjdApka...") { id name } } query GetProjectUsingGrid { desProjectById(id:"grid:workspace:11a0ad2e-9e89-4...") { id name } }
Response:
// The returned id is a GRID { "data": { "desProjectById": { "id": "grid:workspace:11a0ad2e-9e89-4...", "name": "Sample - Kame_MB" } } }
We expect changes to `desWorkspaceById` soon, too.
If you are not storing our IDs (as recommended), you will not be affect by these changes.
If you happen to be storing these (not recommended), you will need to change the obsolete IDs manually.
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article