Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
@gql-conquest/query-selector
Advanced tools
Query your HTML using GraphQL. Replaces document.querySelector.
Query your HTML using GraphQL. Replaces document.querySelector.
npm install @gql-conquest/query-selector
Ensure you have graphql
installed as a peer dependency:
npm install graphql
You will also need graphql-tag
to tag your query:
npm install graphql-tag
Pass the tagged gql query and the root element.
Fetch all p
tags from a root element.
import querySelector from '@gql-conquest/query-selector'
import gql from 'graphql-tag'
const root = document.querySelector('#root')
const result = querySelector(gql`
{
p: all(s: "p")
}`, root)
Fetch all spans and italics under headings under section and all spans under section.
const result = querySelector(gql`
{
section: one(s: "section") {
headings: all(s: "h1, h2, h3, h4, h5, h6") {
spans: one(s: "span")
italics: one(s: "i")
}
spans: all(s: "span")
}
}`, root)
// one span from each heading
assert.deepStrictEqual(result.headings.spans, [<span></span>, <span></span>])
NOTE: Nesting all
fields will cause unwanted behavior. Do not do the following.
This will most likely lead to problems as spans
is an all
field nested under headings
, which is also an all
field:
const result = querySelector(gql`
{
section: one(s: "section") {
headings: all(s: "h1, h2, h3, h4, h5, h6") {
spans: all(s: "span")
italics: one(s: "i")
}
spans: all(s: "span")
}
}`, root)
FAQs
Query your HTML using GraphQL. Replaces document.querySelector.
The npm package @gql-conquest/query-selector receives a total of 0 weekly downloads. As such, @gql-conquest/query-selector popularity was classified as not popular.
We found that @gql-conquest/query-selector 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.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.