Skip to content

Instantly share code, notes, and snippets.

View gallucm's full-sized avatar
🏠
Working from home

Cristian gallucm

🏠
Working from home
View GitHub Profile
@arleyhr
arleyhr / post.schema.js
Last active September 9, 2021 00:04
GraphQL modularize
const typeDefinitions = `
type User {
id: ID!
author: User!
summary: String!
content: String!
image: String!
tags: [Tag!]!
}