
Research
/Security News
Fake imToken Chrome Extension Steals Seed Phrases via Phishing Redirects
Mixed-script homoglyphs and a lookalike domain mimic imToken’s import flow to capture mnemonics and private keys.
json-api-query
Advanced tools
A javascript client helper for APIs built with https://www.jsonapi.net/
NOTE: this is not an API client - it's a query builder for you to use in your client code.
The design / inspiration of this API was lifted quite heavily from https://github.com/typeorm/typeorm - though it is not meant to match it.
The query builder supports all of the terms found in the [since v4.0] docs found here: https://www.jsonapi.net/usage/reading/filtering.html
Legacy syntax is not supported, there is some consideration in the code to add this later (as well as supporting evolved syntax later on) but I am not sure how worthwhile that would be
new QueryBuilder<TestClass>()
.find({
where: {
numProp: 1,
},
})
.build()
Generates the following:
?filter=equals(numProp,'1')
new QueryBuilder<TestClass>()
.find({
where: {
numProp: Any([1, 2, 3]),
},
})
.build()
Generates the following:
?filter=any(numProp,1,2,3)
new QueryBuilder<TestClass>()
.find({
where: {
numProp: Contains('lol'),
},
})
.build()
Generates the following:
?filter=contains(prop12,'lol')
new QueryBuilder<TestClass>()
.find({
where: {
numProp: Not(Equals(1)),
},
})
.build()
Generates the following:
?filter=not(equals(numProp,'1'))
new QueryBuilder<TestClass>()
.find({
where: {
numProp: Or([Has([1, 2, 3]), Equals(1)]),
},
})
.build()
Generates the following:
?filter=or(has(numProp,1,2,3),equals(numProp,'1'))
new QueryBuilder<TestClass>()
.find({
where: [
{
numProp: Has([1, 2, 3]),
},
{
numProp: Equals(1),
},
],
})
.build()
Generates the following:
?filter=or(has(numProp,1,2,3),equals(numProp,'1'))
new QueryBuilder<TestClass>()
.find({
where: {
nested: {
property1Nested: Equals('test'),
},
},
})
.build()
Generates the following:
?filter[nested]=equals(property1Nested,'test')
new QueryBuilder<TestClass>()
.find({
relations: {
nested: {
nestedAgain: true,
},
},
})
.build()
Generates the following:
?include=nested.nestedAgain
new QueryBuilder<TestClass>()
.find({
fields: {
property2: true,
},
})
.build()
Generates the following:
?fields=property2
new QueryBuilder<TestClass>()
.find({
order: {
property2: 'ASC',
nested: {
property1Nested: 'DESC',
property2Nested: {
direction: 'ASC',
},
},
},
})
.build()
Generates the following:
?sort=property2&sort[nested]=property1Nested,-property2Nested
new QueryBuilder<TestClass>()
.find({
where: {
a: Contains('lol'),
not1: Not(Equals('not5')),
nested: {
property2Nested: true,
property1Nested: Has(['one', 'two']),
nestedAgain: {
property1Nested: EndsWith('wot'),
},
},
},
relations: {
nested: true,
},
fields: {
firstName: true,
lastName: true,
nested: {
property2Nested: true,
},
},
number: 10,
size: 0,
order: {
property2: 'ASC',
nested: {
property1Nested: 'DESC',
},
},
})
.build()
Generates the following:
?sort=property2
&sort[nested]=property1Nested
&filter=and(contains(a,'lol'),not(equals(not1,'not5')))
&include=nested
&fields=firstName,lastName
&fields[nested]=property2Nested
&page[size]=0
&page[number]=10
&filter[nested]=and(equals(property2Nested,'true'),has(property1Nested,one,two))
&filter[nestedAgain]=endsWith(property1Nested,'wot')
FAQs
A query builder for JSONAPIDotNetCore
We found that json-api-query demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
Mixed-script homoglyphs and a lookalike domain mimic imToken’s import flow to capture mnemonics and private keys.

Security News
Latio’s 2026 report recognizes Socket as a Supply Chain Innovator and highlights our work in 0-day malware detection, SCA, and auto-patching.

Company News
Join Socket for live demos, rooftop happy hours, and one-on-one meetings during BSidesSF and RSA 2026 in San Francisco.