We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
An optional argument for creating datasets via GQL has been added for now:
Once kamu-web has done the migration and the changes have been pushed to the deployed environments, make the added argument mandatory:
kamu-web
type DatasetsMut { ... Creates a new empty dataset """ createEmpty( datasetKind: DatasetKind!, datasetAlias: DatasetAlias!, - datasetPubliclyAvailable: Boolean + datasetPubliclyAvailable: Boolean! ): CreateDatasetResult! """ Creates a new dataset from provided DatasetSnapshot manifest """ createFromSnapshot( snapshot: String!, snapshotFormat: MetadataManifestFormat! - datasetPubliclyAvailable: Boolean + datasetPubliclyAvailable: Boolean! ): CreateDatasetFromSnapshotResult! ... }
A task to update the frontend:
The text was updated successfully, but these errors were encountered:
s373r
No branches or pull requests
An optional argument for creating datasets via GQL has been added for now:
Once
kamu-web
has done the migration and the changes have been pushed to the deployed environments, make the added argument mandatory:A task to update the frontend:
The text was updated successfully, but these errors were encountered: