Project management
At the heart of our Digital Reality projects lies a focused and innovative approach towards Project Management. With all your geospatial and reality capture datasets coming together resulting in a digital twin, our project management capabilities are designed to optimize, streamline, and enhance the process. Collaboration is a cornerstone in our strategy, fostering a sense of unity, fostering ideation, and solving challenges by combining collective insights.
By harmonizing these intricate elements, we're not just overseeing projects but orchestrating a symphony of digital innovation- all targeted to deliver high-quality, impactful solutions that revolutionize reality as we know it.
- Create, update, delete projects.
- Search for projects.
- Add/remove project members.
- Assign different project roles.
- Collaborate on projects.
Related Pages
GraphQL API reference
This section lists a few examples. Please refer to HxDR GraphQL Playground (opens in a new tab) to explore complete schema.
Retrieves the specified project and related information, if it exists, null otherwise.
query Project {
project(projectId: "[projectId]") {
... on ProjectOutput {
id
name
description
createdAt
modifiedAt
thumbnailPath
thumbnailFullImagePath
deletable
latitude
longitude
defaultStorageRegion
totalAssets
totalUploadingAssets
projectSize
}
}
}
A projectId is an ID, which is created when you create a Project. With this projectId you can query for various project details.
To successfully execute a request on HxDR GraphQL playground, See following :
Retrieves all projects the user has access to, filtered and ordered as specified. Account admins have access to all projects in the account.
Retrieves all folders and assets the user has access to in a project, filtered and ordered by as specified.
Retrieves the specified user profile if both that user and the authenticated user are members of the given project.
Uploads a thumbnail to the specified project if it exists. Returns the project thumbnail if the operation was successful, null otherwise.
JS-SDK reference
Project Management
Project Management services