PostgreSQL - JSON and JSONB
Given the table
orders with a JSONB column details containing {"item": "book", "shipped": true}, what will the query SELECT * FROM orders WHERE details ? 'shipped'; return?