Created
June 27, 2022 12:29
-
-
Save ctrlaltdylan/11ea97480cc6a34e59cb5680f15c1630 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default { | |
name: "Pg Custom Action", | |
version: "0.0.1", | |
key: "pg-custom-action", | |
description: "", | |
props: { | |
query: { | |
type: 'string', | |
label: 'Query', | |
}, | |
}, | |
type: "action", | |
methods: { | |
async queryDb(query) { | |
} | |
}, | |
async run({ $ }) { | |
await this.queryDb(this.query) | |
}, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment