Book Image

Isomorphic JavaScript Web Development

By : Tomas Alabes, Konstantin Tarkus
Book Image

Isomorphic JavaScript Web Development

By: Tomas Alabes, Konstantin Tarkus

Overview of this book

<p>The latest trend in web development, Isomorphic JavaScript, allows developers to overcome some of the shortcomings of single-page applications by running the same code on the server as well as on the client. Leading this trend is React, which, when coupled with Node, allows developers to build JavaScript apps that are much faster and more SEO-friendly than single-page applications.</p> <p>This book begins by showing you how to develop frontend components in React. It will then show you how to bind these components to back-end web services that leverage the power of Node. You'll see how web services can be used with React code to offload and maintain the application logic. By the end of this book, you will be able to save a significant amount of development time by learning to combine React and Node to code fast, scalable apps in pure JavaScript.</p>
Table of Contents (16 chapters)
Title Page
Credits
About the Authors
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface

The GraphQL type system


At the core of GraphQL is a type system, which describes the capabilities of the data API server and is used to determine if a query is valid. At each level of a GraphQL query, a particular type applies describing not only what fields are available but what arguments you can supply to those fields, and what types are going to be resolved from those fields.

A GraphQL server's capabilities are referred to as that server's schema, that is defined in terms of the types and directives it supports. The fundamental unit of any GraphQL schema is a type. There are eight kinds of types in GraphQL: Scalar, Enum, Object, Interface, Union, List, Non-Null, and Input Object.

The Scalar types are primitive values that describe leaf nodes of the GraphQL schema; there are five built-in scalar types:

  • Int: A signed 32-bit numeric non-fractional value
  • Float: A signed double-precision fractional value
  • String: Textual data represented as a UTF-8 character sequence
  • Boolean: Can either be true...