Loading...
Loading...
Hasura integration. Manage Users, Organizations. Use when the user wants to interact with Hasura data.
npx skill4agent add membranedev/application-skills hasuramembranenpm install -g @membranehq/climembrane login --tenantmembrane login complete <code>membrane search hasura --elementType=connector --jsonoutput.items[0].element?.idmembrane connect --connectorId=CONNECTOR_ID --jsonmembrane connection list --jsonconnectionIdmembrane action list --intent=QUERY --connectionId=CONNECTION_ID --json| Name | Key | Description |
|---|---|---|
| Get Inconsistent Metadata | get-inconsistent-metadata | Get a list of metadata inconsistencies. |
| Reload Metadata | reload-metadata | Reload the Hasura metadata. |
| Drop Relationship | drop-relationship | Delete a relationship from a table in Hasura |
| Create Array Relationship | create-array-relationship | Create an array (one-to-many) relationship between tables in Hasura |
| Create Object Relationship | create-object-relationship | Create an object (many-to-one) relationship between tables in Hasura |
| Run SQL | run-sql | Execute raw SQL statements against a PostgreSQL data source. |
| Drop REST Endpoint | drop-rest-endpoint | Delete a RESTified GraphQL endpoint |
| Create REST Endpoint | create-rest-endpoint | Create a RESTified GraphQL endpoint that exposes a GraphQL query or mutation as a REST API |
| Delete Event Trigger | delete-event-trigger | Delete an event trigger from a PostgreSQL data source |
| Create Event Trigger | create-event-trigger | Create an event trigger on a PostgreSQL table that sends webhooks on INSERT, UPDATE, or DELETE events |
| Untrack Table | untrack-table | Remove a PostgreSQL table or view from the Hasura GraphQL schema |
| Track Table | track-table | Add a PostgreSQL table or view to the Hasura GraphQL schema, making it queryable via GraphQL |
| Get Source Tables | get-source-tables | List all tables available in a PostgreSQL data source |
| Export Metadata | export-metadata | Export the current Hasura metadata as JSON. |
| Execute GraphQL Mutation | execute-graphql-mutation | Execute a GraphQL mutation against the Hasura GraphQL engine |
| Execute GraphQL Query | execute-graphql-query | Execute a GraphQL query against the Hasura GraphQL engine |
membrane action run --connectionId=CONNECTION_ID ACTION_ID --jsonmembrane action run --connectionId=CONNECTION_ID ACTION_ID --json --input "{ \"key\": \"value\" }"membrane request CONNECTION_ID /path/to/endpoint| Flag | Description |
|---|---|
| HTTP method (GET, POST, PUT, PATCH, DELETE). Defaults to GET |
| Add a request header (repeatable), e.g. |
| Request body (string) |
| Shorthand to send a JSON body and set |
| Send the body as-is without any processing |
| Query-string parameter (repeatable), e.g. |
| Path parameter (repeatable), e.g. |
membrane action list --intent=QUERY