0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00
ghost/core/server/api/v2
Kevin Ansfield 51e04c75ad
Added "contains" operator support to ?filter= query params (#14286)
refs https://github.com/TryGhost/Team/issues/1408

- switched from `@nexes/nql` to `@tryghost/nql` and bumped `@tryghost/bookshelf-plugins` to get access to the latest NQL version across the app
- adds "contains" operator support
  - `:~'string'` - contains
  - `:-~'string'` - does not contain
  - `:~^'string'` - starts with
  - `:-~^'string'` - does not start with
  - `:~$'string'` - ends with
  - `:-~$'string'` - does not end with
- enables `'` escaping in strings, eg `'O\'Nolan'`
2022-03-09 13:02:17 +00:00
..
utils Added "contains" operator support to ?filter= query params (#14286) 2022-03-09 13:02:17 +00:00
actions.js
authentication.js
authors-public.js
config.js
db.js
images.js
index.js
integrations.js
invites.js
mail.js
notifications.js
oembed.js
pages-public.js
pages.js
posts-public.js
posts.js
preview.js
redirects.js
roles.js
schedules.js
session.js
settings-public.js
settings.js Updated eslint-plugin-ghost & fixed resulting failures 2022-02-21 12:30:12 +00:00
site.js
slack.js
slugs.js
tags-public.js
tags.js
themes.js
users.js
webhooks.js