wesovilabs / mollydb

A GraphQL configuration file database
Other
8 stars 0 forks source link

Hooks deletion #1

Closed ivancorrales closed 6 years ago

ivancorrales commented 6 years ago

A way to delete an existing hook should be implemented. Currently we can create hooks (restHooks so far) by making use of mutation:

mutation HookQuery {
  propertyRestHook(uri: "http://localhost:3000/properties/mongodb-port", verb: "PUT", path: "mollydb://db/mongodb?key=database.port")
}

So another mutation must be implemented in order to delete the hooks.

ivancorrales commented 6 years ago

Completed