Skip to main content

What’s New

Qrvey 9.1
Qrvey Version 9.1 is now available! This release introduces numerous features, enhancements, bug fixes, and performance improvements.
Learn More
Qrvey 9.0
Qrvey Version 9.0 is now available! This release introduces multi-platform hosting (Azure & AWS), a redesigned Dashboard, extensive widget customizations, and numerous features, enhancements, bug fixes, and performance improvements.
Learn More
Qrvey 8.8
Qrvey Version 8.8 (LTS) is now available to customers! This version supports FIPS for GovCloud and includes tons of bug fixes and performance improvements.
Learn More
Qrvey 8.7
Version 8.7 of the Qrvey platform is now available to customers! This version includes new features including area charts, the ability to pivot and export data, as well as numerous bug fixes and performance improvements.
Learn More
Qrvey 8.6
Version 8.6 of the Qrvey platform is now available to customers. This version includes several new feature enhancements and performance improvements.
Learn More
Required Update for 8.5.1
Attention 8.5.1 customers: for any 8.5.1 instance deployed prior to 08/05/2024, an update is required to ensure you are running the latest images.
Learn More
Qrvey 8.5
Version 8.5 (LTS) of the Qrvey platform is now available to customers. This version includes several new features and performance improvements.
Learn More
End-of-life Schedule
We've added a new article that lists the features and endpoints that have been scheduled for deprecation. All features and endpoints will be supported for (1) year after the release date of the LTS version that contains the alternative.
Learn More
Version: 9.1

Dataset Views

A Dataset View is a reference dataset that points to another dataset as its source. It lets you create a customized view for users within the application where the view resides. While a dataset view belongs to a single application, its source dataset can be from another application. Use dataset views to share data across applications without duplicating large datasets.

Create a Dataset View

Dataset views can only be created from shared datasets:

  1. Go to Data > Datasets and click New Dataset.
  2. Select the Shared Data tab and choose a shared dataset as the source.
  3. Click New Dataset View.
    The owner and source app are displayed for each shared dataset.

dataset_views

View Dataset Views

  1. Go to Data > Datasets and locate the desired dataset.
    Dataset views are identified by the Type property on the main Datasets page.

dataset_views

Customize Dataset Views

You cannot change the underlying data structure of a dataset view. Allowed actions:

  • Show/hide columns
  • Change column names
  • Adjust column visualization formats
  • Create geolocation groups
  • Set column links

Restricted actions:

  • Edit connection settings or source queries
  • Create joins or transformations
  • Change column data types or input formats
  • Set unique identifiers
  • Define sync schedules

Create a Dataset View via API

  1. Choose a Shared Dataset:

    • Use Qrvey Composer to share a dataset, or use an existing shared dataset.
    • Or, use the API to mark a dataset as shared by sending { "isPublic": true } in the request body:
      https://{{DOMAIN}}.qrveyapp.com/api/v4/user/{{USER_ID}}/app/{{APP_ID}}/qollect/dataset/{{DATASET_ID}}/publishVersion?runPublicTrigger=true
  2. Get the shared dataset's connectionId using the Get Dataset endpoint.

  3. Create the Dataset View using the Create Dataset View from Shared Dataset endpoint.

Note: You’ll need the domain, appId, and datasetId. In Qrvey Composer, open Apps > [Application] > Data > [Dataset] > Design and check the URL for these values:
https://{{DOMAIN}}.qrveyapp.com/app/index.html#/application/{{APP_ID}}/data-uploads/{{DATASET_ID}}