Kevin C.
I love sharing my learning journey in the technology land and hopefully you can also takeaway some interesting tidbits from mine for your own learning and inspire many others to pass on these knowledges. Enjoy and happy learning & sharing!
Source: http://i.huffpost.com/gen/1311474/images/o-SCHOOLS-facebook.jpg
[source:https://blog.jscrambler.com/files/2016/05/getting-started-with-graphQL.png]
GraphQL is a data query language and runtime designed and used at Facebook to request and deliver data to mobile and web apps since 2012.
(Facebook has >1 billion daily active users)
[Source: The Business Case for GraphQL by James Baxley III NewSpring Church]
[Source: The Business Case for GraphQL by James Baxley III NewSpring Church]
[Reference: Why GraphQL is the future]
Display the list of posts along with its owner, comments and...
GET /posts
{
"data": {
"posts": [
{
"_id": "03390abb5570ce03ae524397d215713b",
"title": "New Feature",
"summary": "Lot of users asked us to add a feature to set status for errors in the Error Manager. Now, we've that functionality.",
"authorId": "john"
},
{
"_id": "2f6b59fd0b182dc6e2f0051696c70d70",
"title": "Understanding Mean, Histogram and Percentiles",
"summary": "A short guide to means, histograms and percentiles and how we can use them in a real situation."
"authorId": "mary"
},
{
"_id": "3d7a3853bf435c0f00e46e15257a94d9",
"title": "Introducing Debug, Version 2",
"summary": "Today, we are introducing a new version of Debug. It comes with many UI improvements and support for CPU profiling."
"authorId": "tony"
}
]
}
}
REST API Call #1
GET /author/{id}
{
"data": {
"author":{
"name": "John Smith"
}
}
}
{
"data": {
"author": {
"name": "Mary Mee"
}
}
}
{
"data": {
"author": {
"name": "Tony Bright"
}
}
}
REST API Call #2, #3, #4
GET /v2/{postid}/comments
{
"comments": [
{
"_id": "cid-85822278",
"content": "This is a very good blog post",
"timestamp": null,
"authorId": "john"
},
{
"_id": "cid-87907272",
"content": "Keep up the good work",
"timestamp": null,
"authorId": "tony"
}
]
}
{
"comments": [
{
"_id": "cid-32145278",
"content": "Interesting post",
"timestamp": null,
"authorId": "mary"
}
]
}
{
"comments": [
{
"_id": "cid-84674272",
"content": "nice!",
"timestamp": null,
"authorId": "kevin"
}
]
}
REST API Call #5, #6, #7
REST API Call +++ Again
GET /author/{id}
...
[Source: http://buytaert.net/sites/buytaert.net/files/images/blog/web-services-rest-json-grapql.jpg]
{ posts{ title summary author{ name } comments{ content timestamp author{ name } } } }
Client issues request declaring data requirements
{
"data": {
"posts": [
{
"title": "Sharing the Meteor Login State Between Subdomains",
"summary": "In this blog we'll show you how we shared login state between our static web app and our Meteor app UI.",
"author": {
"name": "Mary Mee"
},
"comments": [
{
"content": "This is a very good blog post",
"timestamp": null,
"author": {
"name": "John Smith"
}
},
{
"content": "Keep up the good work",
"timestamp": null,
"author": {
"name": "Mary Mee"
}
}
]
},
{
"title": "New Feature: Tracking Error Status with",
"summary": "Lot of users asked us to add a feature to set status for errors in the Error Manager. Now, we've that functionality.",
"author": {
"name": "John Smith"
},
"comments": [
{
"content": "This is a very good blog post",
"timestamp": null,
"author": {
"name": "John Smith"
}
},
{
"content": "Keep up the good work",
"timestamp": null,
"author": {
"name": "Mary Mee"
}
}
]
},
{
"title": "What Should Build Next?",
"summary": "We are working on the next few major feature releases. We would like to know your preference. Pre-order the feature you would most like to see in the next major release (scheduled for August 1).",
"author": {
"name": "Tony Bright"
},
"comments": [
{
"content": "Great post",
"timestamp": null,
"author": {
"name": "John Smith"
}
},
{
"content": "Keep it up",
"timestamp": null,
"author": {
"name": "Mary Mee"
}
}
]
}
]
}
}
Server issues response matching structure of declared data requirements
[Source: http://buytaert.net/sites/buytaert.net/files/images/blog/web-services-rest-json-grapql.jpg]
[Source: Based on Learn GraphQL by KADIRA]
REST
SQL
S3
Web App
Mobile
Resolvers
Connectors
Require multiple round trips between the client and server to render single views
Data Over-fetching - as the requirements change, payload grows monotonically, but old clients also receive this additional data
Versioning of API introduce complexity of the server with code duplication, spaghetti code and is hard to maintain
A GraphQL query returns exactly what a client asks for and no more
Confidently support shipped clients as a system evolves
Strong typed query allowing the server to make guarantees about the response
No more time spent trying to figure out an API
Ruby graphql-ruby
PHP graphql-php
Python graphene
Java graphql-java
C/C++ libgraphqlparser
GO graphql
Scala sangria
.NET graphql-dotnet
Elixir graphql-elixir
Haskell graphql-haskell
SQL sql-to-graphql
Lua graphql-lua
Postgresql PostGraphQL
2014
2015
Jan
2015
Mar
2015
Sept
2016
Present
2014
https://www.myoxygen.co.uk/img/native3.jpg
Sources:
http://marketblog.envato.com/wp-content/uploads/2014/11/material_design_06.gif
https://s-media-cache-ak0.pinimg.com/originals/c9/75/72/c97572758ccc7178971bac0fa676b2b3.gif
http://turbo.designwoop.com/uploads/2014/06/21-shop-it-shopping-iphone-app-ui.gif
http://1stwebdesigner.com/ui-mobile-app-animations/
[Source http://www.imore.com/sites/imore.com/files/styles/larger/public/field/image/2013/05/iphone_5_htc_one_galaxy_s4_hero.jpg?itok=m8HPHm1U]
[Source: https://www.myoxygen.co.uk/img/native3.jpg]
2014
2015
Jan
2015
Mar
2015
Sept
[Source: http://mjw56.github.io/content/images/2015/05/react_native.png]
A FRAMEWORK FOR BUILDING
NATIVE APPS USING REACT
2014
2015 Jan
[Source: http://blog.devzeng.com/images/hello-react-native/react-native-logo.jpg]
2014
2015
Jan
2015
Mar
2014
2015
Jan
2015
Mar
2015
Sept
[Source: https://adtmag.com/articles/2015/09/14/react-native-android.aspx]
[Source: http://mjw56.github.io/content/images/2015/05/react_native.png]
[Source: http://media.giphy.com/media/yidUzHnBk32Um9aMMw/giphy.gif
[Source:https://medium.com/@clayallsopp/react-native-in-production-2b3c6e6078ad#.1relcobw4]
[Source:https://medium.com/ios-os-x-development/an-ios-developer-on-react-native-1f24786c29f0#.o2oh3dchn]
[Source:https://medium.com/ios-os-x-development/an-ios-developer-on-react-native-1f24786c29f0#.o2oh3dchn]
2014
2015
Jan
2015
Mar
2015
Sept
2016
Present
[source: https://medium.com/@clayallsopp/2016-the-year-react-native-eats-mobile-development-83e8482f78a6#.gjyfwxki4]
[Source: React-Europe React Native Retrospective's by from Bonnie Eisenman]
Source: A photo taken on 1 June, 2016 shows the flooded Seine river and the Eiffel Tower in Paris.
BERTRAND GUAY/AFP/Getty Images
Improve the time to access the most important data
Real-time data updates
By Kevin C.
This sharing presents the takeaways from my visit to React-Europe Summer 2016. The topics covered here includes the highlight from Hackathon, the conference itself, and dive into topics such as React Native and GraphQL.
I love sharing my learning journey in the technology land and hopefully you can also takeaway some interesting tidbits from mine for your own learning and inspire many others to pass on these knowledges. Enjoy and happy learning & sharing!