camp8bit / clubhouse

Replacement for private Facebook groups
0 stars 0 forks source link

Clubhouse

Clubhouse is an alternative to Facebook private groups.

Staring a dev environment

You'll need PHP, MySQL and Composer installed.

Play with the API

Open http://localhost:3000/dev/graphiql and run a query. Here's a sample to get your started. Note that the syntax of this query will undoubtedly change.

{
  readClubhouseClubhouses {
    edges {
      node {
        ID
        Title
        Subdomain
        Members {
          edges {
            node {
              FirstName
              Surname
            }
          }
        }
        Posts {
          edges {
            node {
              Created
              Author {
                FirstName
                Surname
              }
              Subject
              Message
              Importance
            }
          }
        }
      }
    }
  }
}