Socket
Socket
Sign inDemoInstall

@graphql-tools/graphql-tag-pluck

Package Overview
Dependencies
61
Maintainers
3
Versions
1081
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @graphql-tools/graphql-tag-pluck

Pluck graphql-tag template literals


Version published
Weekly downloads
3.4M
decreased by-1.24%
Maintainers
3
Install size
11.1 MB
Created
Weekly downloads
 

Package description

What is @graphql-tools/graphql-tag-pluck?

The @graphql-tools/graphql-tag-pluck package is designed to extract GraphQL query strings from JavaScript and TypeScript files. It can pluck GraphQL queries from template literals in your code, which is useful when you want to separate GraphQL operations from the rest of your JavaScript codebase for preprocessing or compilation purposes.

What are @graphql-tools/graphql-tag-pluck's main functionalities?

Plucking GraphQL queries from JavaScript/TypeScript files

This feature allows you to extract GraphQL queries from a specified JavaScript or TypeScript file. The `gqlPluckFromFile` function reads the file and returns a promise that resolves with the extracted queries.

const { gqlPluckFromFile } = require('@graphql-tools/graphql-tag-pluck');

async function getQueries() {
  const filePath = 'path/to/your/file.js';
  const gqlQueries = await gqlPluckFromFile(filePath);
  console.log(gqlQueries);
}

getQueries();

Plucking GraphQL queries from a string

This feature allows you to extract GraphQL queries from a string containing code. The `gqlPluckFromCodeString` function takes a string as input and returns a promise that resolves with the extracted queries.

const { gqlPluckFromCodeString } = require('@graphql-tools/graphql-tag-pluck');

async function getQueriesFromString(codeString) {
  const gqlQueries = await gqlPluckFromCodeString(codeString);
  console.log(gqlQueries);
}

const code = "const query = gql`{ user { id } }`";
getQueriesFromString(code);

Other packages similar to @graphql-tools/graphql-tag-pluck

Readme

Source

Check API Reference for more information about this package; https://www.graphql-tools.com/docs/api/modules/graphql_tag_pluck_src

You can also learn more about GraphQL Tag Pluck in this chapter; https://www.graphql-tools.com/docs/graphql-tag-pluck

FAQs

Last updated on 21 Feb 2024

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc