[9.x] Add query builder method whereJsonContainsKey()#41802
Merged
taylorotwell merged 2 commits intolaravel:9.xfrom Apr 4, 2022
Merged
[9.x] Add query builder method whereJsonContainsKey()#41802taylorotwell merged 2 commits intolaravel:9.xfrom
whereJsonContainsKey()#41802taylorotwell merged 2 commits intolaravel:9.xfrom
Conversation
f14d666 to
3c0398f
Compare
Allow filtering by JSONB documents that contain a given object string key or an array integer key.
3c0398f to
99bb6ca
Compare
Member
|
Thanks! |
Contributor
|
@derekmd Is there a specific reason for the complex PostgreSQL implementation instead of just using jsonb_path_exists like for MySQL? |
Contributor
Author
|
https://laravel.com/docs/9.x/database#introduction Laravel 9.x officially supports PostgreSQL 10.0+ but
Whereas Laravel supports MySQL 5.7+ and 5.7 has |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Resubmit of draft #41756 for new method
whereJsonContainsKey(). This PR also allows checking for array integer keys, supports SQLite, and runs integration tests on each database driver.