Skip to content
New issue

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

feat: create view #89

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/views/view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,16 @@ export default class View {
this.project = project;
}

/**Creates this view in the project.
* @param {string} select - SELECT statement to use for populating the new view with data.
* @returns {Promise<View>} - Newly created view.
* @throws {MindsDbError} - Something went wrong creating this view.
*/
async create(select: string): Promise<View> {
return await this.viewsApiClient.createView(this.name, this.project, select);
}


/** Deletes this view from the project it belongs to.
* @throws {MindsDbError} - Something went wrong deleting this view.
*/
Expand Down