Skip to content
This repository was archived by the owner on Jun 8, 2019. It is now read-only.

Use Case Promotional Ads and Users

eecaro edited this page Jun 22, 2017 · 5 revisions

With provided themed lists, a list of primary influencers on Instagram related to a given theme could be provided.

Use Case - The Trendy Clothing Company

If there was a trendy clothing company, ClothingCo, with intentions of promoting their product through ad placements or Instagram influencers, a list popular Instagrammers that would be likely to promote ClothingCo's products would be provided.

Querying for the Top Users

Below, is an example query that could search for the information requested based on a given theme. In this example, the information being acquired is the top 10 influencers on Instagram for the trendy clothing company.

The specified information desired is the user's username, location, and number of followers. Using the graphql interface, this information could be queried for with the following input.

Query Input

{
trendyClothing(limit: 10, service: "instagram"){
    username
    location
    followers 	
 }  
}

The output will produce the top ten users with their Instagram username, location, and number of followers.

Query Results

{
  data: {
    "trendyClothing": [
     {
     "username": "@zarinares", 
     "location": "Los Angeles, CA",
     "followers": "4,978"
      },
      {
     "username": "@vbiancav", 
     "location": "New York, NY",
     "followers": "3,673"
      },
      {
     "username": "@kaylenschmidt", 
     "location": "Portland, OR",
     "followers": "5,824"
      },
      {
     "username": "@riverheads", 
     "location": "Los Angeles, CA",
     "followers": "1,498"
      },
      {
     "username": "@blackchanel_janet", 
     "location": "Taipei, Taiwan",
     "followers": "6,775"
      },
      {
     "username": "@loo_ana", 
     "location": "Brazil",
     "followers": "8,826"
      },
     {
     "username": "@nogophoto", 
     "location": "Brazil",
     "followers": "9,933"
      },
      {
     "username": "@photochanel", 
     "location": "Seattle, WA",
     "followers": "3,487"
      },
      {
     "username": "@bohochic", 
     "location": "Los Angeles, CA",
     "followers": "4,576"
      },
      {
     "username": "@citycasual", 
     "location": "New York, NY",
     "followers": "3,442"
      }	
    ]
  }
}

GraphQL View