amfoss / website

Website of FOSS@Amrita, Powered by JAMStack
https://amfoss.in
MIT License
493 stars 20 forks source link

Fetch Members from CMS #24

Closed harshithpabbati closed 4 years ago

harshithpabbati commented 4 years ago

Need to fetch members from CMS. This is the basic API which we have now in the CMS use the dataFetch to fetch data from GraphQL.

query($username: String!){
  user(username:$username){
        profile{
      firstName
      lastName
      githubUsername
      email
      tagline
      about
      links{
        link
        portal{
          name
          color
          icon
        }
      }
    }
  }
}