Giter VIP home page Giter VIP logo

Comments (3)

moufmouf avatar moufmouf commented on July 28, 2024

Hey @golaod !

  1. Can I add input which behaves like an array type of any scalar value?

Is this allowed by the GraphQL spec and Webonyx? My understanding is that union types can only be used on objects. Could you maybe post your Webonyx Input type? That would help me understand how to reproduce this.

  1. Can I have default values for the input?

Yes, you simply put the default value in the method signature.

For instance:

/**
 * @Factory
 */
public function filters(string $status = 'on'): Filter
  1. Can I extend what is displayed above rows, cause I saw in the documentation that you only return total size there

You are referring to pagination with Porpaginas (https://graphqlite.thecodingmachine.io/docs/pagination), right?
It is possible, though not very simple.
What you want to do is to write your own "TypeMapper" that maps your class (in our case a class implementing the Porpaginas\ResultIterator interface) to a Webonyx Object type.

You can actually copy-paste the PorpaginasTypeMapper in your code and customize it.

https://github.com/thecodingmachine/graphqlite/blob/b997a25df4815dfb0e3489501f3783c62ec470c3/src/Mappers/PorpaginasTypeMapper.php

You then need to register the type mapper in your application. The way you do that depends on the framework you are using.

  1. Eager loading (deferred resolvers). I know someone asked already about it

Not yet.
That will go in v3.1. See #14

I actually need help to find a simple syntax for deferred resolvers.

  1. If those things are not possible, will they? and if they will, can we participate in development to speed things up?

Any help is definitely welcome! :)

from graphqlite.

golaod avatar golaod commented on July 28, 2024

We contacted you already by email to solve the problem for us, but because you asked here how we did any scalar, I'm attaching it for others who may need it:

Type::nonNull(Type::listOf(new AnyScalarType()))

And the type itself:

class AnyScalarType extends ScalarType
{
    const NAME = 'AnyScalar';

    const SCALAR_NODES = [
        StringValueNode::class,
        BooleanValueNode::class,
        IntValueNode::class,
        FloatValueNode::class
    ];

    /**
     * Serializes an internal value to include in a response.
     *
     * @param string $value
     * @return string
     */
    public function serialize($value)
    {
        return $value;
    }

    /**
     * Parses an externally provided value (query variable) to use as an input
     *
     * @param mixed $value
     * @return mixed
     */
    public function parseValue($value)
    {
        if (!is_scalar($value)) {
            throw new Error('Cannot represent following value as scalar: ' . Utils::printSafeJson($value));
        }

        return $value;
    }

    /**
     * Parses an externally provided literal value (hardcoded in GraphQL query) to use as an input.
     *
     * E.g.
     * {
     *   user(email: "[email protected]")
     * }
     *
     * @param \GraphQL\Language\AST\Node $valueNode
     * @return string
     * @throws Error
     */
    public function parseLiteral($valueNode)
    {
        $isScalar = false;
        foreach (self::SCALAR_NODES as $nodeClass) {
            if ($valueNode instanceof $nodeClass) {
                $isScalar = true;
                break;
            }
        }

        if (!$isScalar) {
            throw new Error("Not a valid scalar", [$valueNode]);
        }
        return $valueNode->value;
    }
}

from graphqlite.

moufmouf avatar moufmouf commented on July 28, 2024

For the record, this was fixed by various PRs in the last month.
Documentation is here:

https://graphqlite.thecodingmachine.io/docs/next/custom-types#registering-a-custom-scalar-type-advanced

from graphqlite.

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.