Skip to content

Instantly share code, notes, and snippets.

  1. Use a WebVR experienece - http://vr.britishmuseum.org
  2. Use Youtube
  3. Use Facebook and facebook messenger
  4. Browse your favorite sites

Questions:

  1. How does the UI feel? Are you able to open new tabs, create bookmarks, navigate?
@brandf
brandf / interface.graphql
Created August 30, 2017 04:46
Interface example
interface SubjectOfComment {
commentedOn: [Comment!]! @relation(name: "SubjectOfComment")
}
interface ObjectOfComment {
comments: [Comment!]! @relation(name: "ObjectOfComment")
}
type User implements SubjectOfComment, ObjectOfComment {
id: ID!