Method: Sequel::Postgres::JSONBOp#delete_path

Defined in:
lib/sequel/extensions/pg_json_ops.rb

#delete_path(other) ⇒ Object

Check if the other jsonb contains all entries in the receiver:

jsonb_op.delete_path(:h) # (jsonb #- h)


342
343
344
# File 'lib/sequel/extensions/pg_json_ops.rb', line 342

def delete_path(other)
  json_op(DELETE_PATH, wrap_input_array(other))
end