(ctx context.Context, id int)
| 69 | } |
| 70 | |
| 71 | func (c *nodeClient) Delete(ctx context.Context, id int) error { |
| 72 | return c.client.Node.DeleteOneID(id).Exec(ctx) |
| 73 | } |
| 74 | |
| 75 | func (c *nodeClient) ListNodes(ctx context.Context, args *ListNodeParameters) (*ListNodeResult, error) { |
| 76 | query := c.client.Node.Query() |
nothing calls this directly
no test coverage detected