
Security News
Bun 1.2.19 Adds Isolated Installs for Better Monorepo Support
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.
rtk-query-graphql-fetch
Advanced tools
It helps you to make queries to a server that is using graphql
Provides the facility to make requests to a graphql server
npm install @rtk-query/graphql-fetch
yarn add @rtk-query/graphql-fetch
A list of available properties can be found below. These must be passed to the containing graphqlFetch
method.
Property | Type | Description |
---|---|---|
url | string | server url. |
prepareHeaders | function | return two functions, one on each parameter; 1- setHeaders , 2- setHeader |
import { createApi } from "@reduxjs/toolkit/query/react";
import { graphqlFetch } from "@rtk-query/graphql-fetch";
import gql from "graphql-tag";
interface IFruits {
id: number;
fruit_name: string;
}
interface IData {
data: { filterFruitsFam: IFruits[] };
}
const FILTER_FRUITS_FAM = gql`
query FilterFruitsFam($family: String) {
filterFruitsFam(family: $family) {
id
scientific_name
tree_name
fruit_name
family
origin
description
bloom
maturation_fruit
life_cycle
climatic_zone
}
}
`;
const fruitApi = createApi({
reducerPath: "fruitApi",
baseQuery: graphqlFetch({
url: "https://fruits-api.netlify.app/graphql",
prepareHeaders: (setHeaders, setHeader) => {
// replace all headers with this new object
setHeaders({
authToken: "tokenValue",
});
// you add a header and this is concatenated with the other existing headers
setHeader("authToken", "tokenValue");
},
}),
endpoints: (builder) => ({
filterFruitsFam: builder.query<IData, { family: string }>({
query: (variables) => ({
document: FILTER_FRUITS_FAM,
variables,
}),
}),
}),
});
const { useFilterFruitsFamQuery } = fruitApi;
export default function Test() {
let content;
const { data, isLoading } = useFilterFruitsFamQuery({ family: "Rosaceae" });
if (isLoading) content = <div>Loading...</div>;
if (data) {
content = (
<div>
{data.data.filterFruitsFam.map((fruit) => (
<div key={fruit.id}>
<p> {fruit.id}</p>
<p> {fruit.fruit_name}</p>
</div>
))}
</div>
);
}
return <>{content}</>;
}
FAQs
It helps you to make queries to a server that is using graphql
The npm package rtk-query-graphql-fetch receives a total of 0 weekly downloads. As such, rtk-query-graphql-fetch popularity was classified as not popular.
We found that rtk-query-graphql-fetch 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
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.
Security News
Popular npm packages like eslint-config-prettier were compromised after a phishing attack stole a maintainer’s token, spreading malicious updates.
Security News
/Research
A phishing attack targeted developers using a typosquatted npm domain (npnjs.com) to steal credentials via fake login pages - watch out for similar scams.