Coder Social home page Coder Social logo

Export VILLUS_CLIENT symbol about villus HOT 5 CLOSED

logaretm avatar logaretm commented on June 6, 2024
Export VILLUS_CLIENT symbol

from villus.

Comments (5)

logaretm avatar logaretm commented on June 6, 2024 1

Yes it would create several clients. But I'm not sure you need to do that, I do use nuxt/composition-api in a production app with tons of GraphQL queries but didn't seem to encounter your use-case.

I do have a lot of data transforms, but I use computed for that. For example:

function useProduct(id) {
  const { data, isFetching } = useQuery({
    query: ProductQuery,
    variables: { id }
  });

  // this query returns multiple product matches
  // i just need the first match
  const product = computed(() => {
    return data.value?.products?.items[0];
  });

  return {
    product,
    isFetching
  };
}

from villus.

logaretm avatar logaretm commented on June 6, 2024 1

I usually either pass it via props if it's just 1 level deep or use provide/inject there, so I actually have something like this as well:

const product = computed(() => {
  return data.value?.products?.items[0];
});

provide('PRODUCT_CTX', product); // I use a symbol here, but strings work fine

// later on in a deeply nested child
const product = inject('PRODUCT_CTX');

product.value; // access query value

from villus.

logaretm avatar logaretm commented on June 6, 2024

May I ask why do you need access to the injected client, what is your usecase? You may use the result of useClient to gain access to the client instance instead.

from villus.

lewebsimple avatar lewebsimple commented on June 6, 2024

I call useClient from onGloablSetup in Nuxt (it could also be the top-level component setup), but say I want to encapsulate some GraphQL query inside a composable like useSomeQuery and possibly transform the data, where do I get the client from?
It seems to me calling useClient multiple times would create many instances of the Villus client, is that correct ?

from villus.

lewebsimple avatar lewebsimple commented on June 6, 2024

What if I want to share that computed property across several components ?

from villus.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.