Skip to content

Instantly share code, notes, and snippets.

View TomasLaval's full-sized avatar

Tomas Laval TomasLaval

View GitHub Profile
@praveenweb
praveenweb / Articles.svelte
Created May 23, 2019 11:58
Fetch Articles using GraphQL in Svelte
<script context="module">
import gql from 'graphql-tag';
import { client } from './apollo';
const ARTICLES = gql`
{
article {
id
title
author {