Записать вывод литерала шаблона с тегом gql? - PullRequest
0 голосов
/ 07 сентября 2018

Это команда graphql, которую я выполняю на клиенте:

        const result = yield client.mutate({
            /* tslint:disable:max-line-length */
            mutation: gql`
                mutation licensemutation($distributor: String, $licenseType: String, $duration: String, $userId: String) {
                    addLicenseCode(distributor: $distributor, licenseType: $licenseType, duration: $duration, userId: $userId) {
                        code,
                        distributor, 
                        duration, 
                        oneTimeUsage, 
                        validFrom, 
                        validTo
                    }
                }
            `,
            /* tslint:enable */
            variables: {
                userId: username,
                distributor: distributor,
                licenseType: 'Premium',
            },
        });

Как записать вывод литерала шаблона с тегом gql на консоль?

...