create account

SPK Network - Using GraphQL for 3Speak Mobile App by spknetwork

View this thread on: hive.blogpeakd.comecency.com
· @spknetwork ·
$53.89
SPK Network - Using GraphQL for 3Speak Mobile App
<center>

[![](https://ipfs-3speak.b-cdn.net/ipfs/bafybeiater5hn7vlmbzwcijbg4ro6l5vaexurmsayoomssdgwch665phke/)](https://3speak.tv/watch?v=spknetwork/lgnldgjo)

▶️ [Watch on 3Speak](https://3speak.tv/watch?v=spknetwork/lgnldgjo)

</center>

---

<center>

![spknetowrkcovergrql.png](https://files.peakd.com/file/peakd-hive/spknetwork/23tvZhkmqbZSsDTe2vXExDeRpigBX75j6Ta8XSpwcbYYjLLSMhrekaaZd8Lwpp8C6tw6K.png)

</center>

---

<div class="text-justify">

**Hey everyone!**

With this 3Speak Video & Hive post, @sagarkothari88 illustrates how to use GraphQL Queries based on Union Indexer.

## SPK Network is always Open-source:

- Mobile app source code
    - https://github.com/spknetwork/Android-app
- Legacy / Current website
    - https://github.com/spknetwork/3speak-legacy-frontend
- Legacy / Current creator studio
    - https://github.com/spknetwork/3speak-legacy-studio
- Union Indexer
    - https://github.com/spknetwork/union-indexer-node

    
## [What is GraphQL?](https://graphql.org/)

- GraphQL is a query language for APIs and a runtime for fulfilling those queries with existing data
- GraphQL provides an interactive way of building the queries & play around them.
- You can select the attributes/fields/properties of your choice for the response.

## Why is GraphQL now on Mobile App?

- The mobile app shows different feeds but is not sorted as per the curation amount.
- For each video, payout info, votes, etc., values are fetched, over & over, when displayed on the screen.
- This consumes internet bandwidth & you may want to avoid it if you are on mobile data.
- There are other issues with the existing feed.
- Feed needs to be updated.
- With GraphQL, we can fix these issues & have needed data in a single request.
- @sagarkothari88 is now implementing GraphQL-based feeds on 3Speak-Mobile application.

## How to use GraphQL?

- Please view the video to understand in detail with a live demo.
- Open this link - https://union.us-02.infra.3speak.tv/api/v2/graphql
- Select the feed of your choice.
    - Social Feed
    - Trending Feed

![Screenshot 2023-07-27 at 12.29.43 AM.png](https://files.peakd.com/file/peakd-hive/sagarkothari88/23tGY56Yrw9BqyesS6pLzYK9HDFTAwLecBDuVTZuWiFHbmNohiK3SXnC1SYJPhJLPyDFM.png)
    
- Select attributes that you need for your User Interface

![Screenshot 2023-07-27 at 12.31.17 AM.png](https://files.peakd.com/file/peakd-hive/sagarkothari88/23tGXT4ouZx923ADDWxohpakQ1dRadRhrXr4o9QL9ejjsZrX3fmEHiNiNxHynw82LW6MJ.png)
    
- Do not forget to apply this filter if you only want the data for Videos.

![Screenshot 2023-07-27 at 12.34.46 AM.png](https://files.peakd.com/file/peakd-hive/sagarkothari88/23tGY58JvQK8Y2o5g98YvFrpx5B8hetSkCUoPGpj4sv4WyaEycci5v6Po66kueJTWzvKb.png)
    
- Hit the run button.

![Screenshot 2023-07-27 at 12.41.13 AM.png](https://files.peakd.com/file/peakd-hive/sagarkothari88/Eo45HnycXiJo1qy4tbQXvhK1LoJGKtkgKT3VKfdNoTTE7PvG56u1KpNeNsRkRxPq7Rj.png)


## Ready-made GraphQL Queries for you

### Trending feed

```
query MyQuery {
  trendingFeed(spkvideo: {only: true}) {
      items {
        ... on HivePost {
          spkvideo
          stats {
            num_comments
            num_votes
            total_hive_reward
          }
          lang
          title
          tags
          permlink
          created_at
          body
        }
    }
  }
}
```

### New Videos Feed

```
query MyQuery {
  socialFeed(spkvideo: {only: true}) {
          items {
        ... on HivePost {
          spkvideo
          stats {
            num_comments
            num_votes
            total_hive_reward
          }
          lang
          title
          tags
          permlink
          created_at
          body
        }
  }
}
```

### First Uploads Feed

```
query MyQuery {
  socialFeed(spkvideo: {only: true, firstUpload: true}) {
    items {
        ... on HivePost {
          spkvideo
          stats {
            num_comments
            num_votes
            total_hive_reward
          }
          lang
          title
          tags
          permlink
          created_at
          body
    }
  }
}
```

### Related Videos

```
query MyQuery {
  relatedFeed(permlink: "sdltslwo", author: "leofinance") {
        items {
        ... on HivePost {
          spkvideo
          stats {
            num_comments
            num_votes
            total_hive_reward
          }
          lang
          title
          tags
          permlink
          created_at
          body
    	}
    }
  }
}
```

### My Published Videos

```
query MyQuery {
  socialFeed(
    spkvideo: {only: true}
    feedOptions: {byCreator: {_eq: "sagarkothari88"}}
  ) {
    items {
      ... on HivePost {
        body
        title
        tags
        stats {
          num_comments
          num_votes
          total_hive_reward
        }
        spkvideo
        permlink
        lang
        community
        created_at
      }
    }
  }
}
```

### 3Shorts
    
```
query MyQuery {
  socialFeed(
    spkvideo: {only: true, isShort: true}
  ) {
    items {
      ... on HivePost {
        body
        title
        tags
        stats {
          num_comments
          num_votes
          total_hive_reward
        }
        spkvideo
        permlink
        lang
        community
        created_at
      }
    }
  }
}
```

### Leaderboard

*Coming soon.*

### Community Details

```
query MyQuery {
  community(id: "hive-181335") {
    title
    about
    created_at
    images {
      avatar
      cover
    }
    roles {
      role
      title
      username
    }
    subscribers
  }
}
```

### Videos from a community

```
query MyQuery {
  community(id: "hive-181335") {
    title
    about
    created_at
    images {
      avatar
      cover
    }
    roles {
      role
      title
      username
    }
    subscribers
    trendingFeed {
      items {
        ... on HivePost {
          spkvideo
          stats {
            num_comments
            num_votes
            total_hive_reward
          }
          lang
          title
          tags
          permlink
          created_at
          body
        }
      }
    }
  }
}
```

---

<div class="text-justify">

#### About the SPK Network:

>The SPK Network is a decentralized Web 3.0 protocol that rewards value creators and infrastructure providers appropriately and autonomously by distributing reward tokens so that every user, creator, and platform can earn rewards on a level playing field.

- Check out the SPK Network Light Paper: https://peakd.com/hive/@spknetwork/spk-network-light-paper

- Our Website: https://spk.network/

- Telegram Group: https://t.me/spknetwork

- Discord Server: https://discord.gg/JbhQ7dREsP

- SPK Network Linktree: https://linktr.ee/spknetwork

---
    
![color3speak.png](https://files.peakd.com/file/peakd-hive/threespeak/23tRvWvmwuE7SGkXfPhHY8GPxiwaVKnVtzAFwDjuXFM3gWtRS6dr2F4yK4vexmaUHERuK.png) 
    
### <center>Important Links:</center>

|||
|:-:|:-:|
|[3Speak Linktree](https://linktr.ee/3speak)|[SPK Network Linktree](https://linktr.ee/spknetwork)|

| | | | |
|-|-|-|-|
|[3Speak.tv](https://3speak.tv)| [3Speak Twitter](https://twitter.com/3speakonline) | [3Speak Hive Blog](https://hive.blog/@threespeak) | [3Speak Telegram](https://t.me/threespeak) |
| [3Speak in Spanish](https://peakd.com/@threespeak-es/posts) | [Download Android App](https://play.google.com/store/apps/details?id=tv.threespeak.app) | [Download iOS App](https://apps.apple.com/us/app/3speak/id1614771373) | [Download Desktop App](https://github.com/spknetwork/3Speak-app/releases)
| [Join 3Speak Discord](https://discord.gg/NSFS2VGj83) | [Setup Encoder Node](https://ecency.com/hive-181335/@sagarkothari88/retfajht) | [Vote for SPK Network Proposal](https://peakd.com/hive-112019/@spknetwork/spk-network-funding-proposal-rhnv7e) | [Badge Recipients](https://peakd.com/b/badge-181335/recipients) |

|||
|:-:|:-:|
[![appStore](https://i.imgur.com/enwTLng.png)](https://apps.apple.com/us/app/3speak/id1614771373) | [![GooglePlayStore](https://i.imgur.com/6K5fgGX.png)](https://play.google.com/store/apps/details?id=tv.threespeak.app)|
    
### <center>[Vote for 3Speak as Witness](https://vote.hive.uno/@threespeak) - [![Support @threespeak](https://i.imgur.com/2cEH8bp.png)](https://hivesigner.com/sign/account-witness-vote?witness=threespeak&approve=1)</center>
    
### <center>[Vote for Sagarkothari88 as Witness](https://vote.hive.uno/@sagarkothari88) - [![Support @sagarkothari88](https://i.imgur.com/bTdSCuq.png)](https://hivesigner.com/sign/account-witness-vote?witness=sagarkothari88&approve=1)</center>
   
</div>

---

▶️ [3Speak](https://3speak.tv/watch?v=spknetwork/lgnldgjo)
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 300 others
👎  
properties (23)
authorspknetwork
permlinklgnldgjo
categoryhive-112019
json_metadata"{"tags":["graphql","spknetwork","3speak","threespeak","leofinance","video","ctp","development","unionidexer"],"app":"3speak/0.3.0","type":"3speak/video","image":["https://ipfs-3speak.b-cdn.net/ipfs/bafybeiater5hn7vlmbzwcijbg4ro6l5vaexurmsayoomssdgwch665phke"],"video":{"info":{"platform":"3speak","title":"SPK Network - Using GraphQL for 3Speak Mobile App","author":"spknetwork","permlink":"lgnldgjo","duration":791.566667,"filesize":202330012,"file":"ipfs://bafybeidbh3fhye2kvuhcmb4fpnjyu2ybqmqvsjrddxnrk2f6p4hqfsp6me","lang":"en","firstUpload":false,"ipfs":null,"ipfsThumbnail":null,"video_v2":"ipfs://QmaZ3Ps8KkqgETgJBq2ZfpvNnwXspAcu8H8FyinMsBh2qP/manifest.m3u8","sourceMap":[{"type":"video","url":"ipfs://QmaZ3Ps8KkqgETgJBq2ZfpvNnwXspAcu8H8FyinMsBh2qP/manifest.m3u8","format":"m3u8"},{"type":"thumbnail","url":"ipfs://bafybeiater5hn7vlmbzwcijbg4ro6l5vaexurmsayoomssdgwch665phke"}]},"content":{"description":"<center>\r\n\r\n![spknetowrkcovergrql.png](https://files.peakd.com/file/peakd-hive/spknetwork/23tvZhkmqbZSsDTe2vXExDeRpigBX75j6Ta8XSpwcbYYjLLSMhrekaaZd8Lwpp8C6tw6K.png)\r\n\r\n</center>\r\n\r\n---\r\n\r\n<div class=\"text-justify\">\r\n\r\n**Hey everyone!**\r\n\r\nWith this 3Speak Video & Hive post, @sagarkothari88 illustrates how to use GraphQL Queries based on Union Indexer.\r\n\r\n## SPK Network is always Open-source:\r\n\r\n- Mobile app source code\r\n - https://github.com/spknetwork/Android-app\r\n- Legacy / Current website\r\n - https://github.com/spknetwork/3speak-legacy-frontend\r\n- Legacy / Current creator studio\r\n - https://github.com/spknetwork/3speak-legacy-studio\r\n- Union Indexer\r\n - https://github.com/spknetwork/union-indexer-node\r\n\r\n \r\n## [What is GraphQL?](https://graphql.org/)\r\n\r\n- GraphQL is a query language for APIs and a runtime for fulfilling those queries with existing data\r\n- GraphQL provides an interactive way of building the queries & play around them.\r\n- You can select the attributes/fields/properties of your choice for the response.\r\n\r\n## Why is GraphQL now on Mobile App?\r\n\r\n- The mobile app shows different feeds but is not sorted as per the curation amount.\r\n- For each video, payout info, votes, etc., values are fetched, over & over, when displayed on the screen.\r\n- This consumes internet bandwidth & you may want to avoid it if you are on mobile data.\r\n- There are other issues with the existing feed.\r\n- Feed needs to be updated.\r\n- With GraphQL, we can fix these issues & have needed data in a single request.\r\n- @sagarkothari88 is now implementing GraphQL-based feeds on 3Speak-Mobile application.\r\n\r\n## How to use GraphQL?\r\n\r\n- Please view the video to understand in detail with a live demo.\r\n- Open this link - https://union.us-02.infra.3speak.tv/api/v2/graphql\r\n- Select the feed of your choice.\r\n - Social Feed\r\n - Trending Feed\r\n\r\n![Screenshot 2023-07-27 at 12.29.43 AM.png](https://files.peakd.com/file/peakd-hive/sagarkothari88/23tGY56Yrw9BqyesS6pLzYK9HDFTAwLecBDuVTZuWiFHbmNohiK3SXnC1SYJPhJLPyDFM.png)\r\n \r\n- Select attributes that you need for your User Interface\r\n\r\n![Screenshot 2023-07-27 at 12.31.17 AM.png](https://files.peakd.com/file/peakd-hive/sagarkothari88/23tGXT4ouZx923ADDWxohpakQ1dRadRhrXr4o9QL9ejjsZrX3fmEHiNiNxHynw82LW6MJ.png)\r\n \r\n- Do not forget to apply this filter if you only want the data for Videos.\r\n\r\n![Screenshot 2023-07-27 at 12.34.46 AM.png](https://files.peakd.com/file/peakd-hive/sagarkothari88/23tGY58JvQK8Y2o5g98YvFrpx5B8hetSkCUoPGpj4sv4WyaEycci5v6Po66kueJTWzvKb.png)\r\n \r\n- Hit the run button.\r\n\r\n![Screenshot 2023-07-27 at 12.41.13 AM.png](https://files.peakd.com/file/peakd-hive/sagarkothari88/Eo45HnycXiJo1qy4tbQXvhK1LoJGKtkgKT3VKfdNoTTE7PvG56u1KpNeNsRkRxPq7Rj.png)\r\n\r\n\r\n## Ready-made GraphQL Queries for you\r\n\r\n### Trending feed\r\n\r\n```\r\nquery MyQuery {\r\n trendingFeed(spkvideo: {only: true}) {\r\n items {\r\n ... on HivePost {\r\n spkvideo\r\n stats {\r\n num_comments\r\n num_votes\r\n total_hive_reward\r\n }\r\n lang\r\n title\r\n tags\r\n permlink\r\n created_at\r\n body\r\n }\r\n }\r\n }\r\n}\r\n```\r\n\r\n### New Videos Feed\r\n\r\n```\r\nquery MyQuery {\r\n socialFeed(spkvideo: {only: true}) {\r\n items {\r\n ... on HivePost {\r\n spkvideo\r\n stats {\r\n num_comments\r\n num_votes\r\n total_hive_reward\r\n }\r\n lang\r\n title\r\n tags\r\n permlink\r\n created_at\r\n body\r\n }\r\n }\r\n}\r\n```\r\n\r\n### First Uploads Feed\r\n\r\n```\r\nquery MyQuery {\r\n socialFeed(spkvideo: {only: true, firstUpload: true}) {\r\n items {\r\n ... on HivePost {\r\n spkvideo\r\n stats {\r\n num_comments\r\n num_votes\r\n total_hive_reward\r\n }\r\n lang\r\n title\r\n tags\r\n permlink\r\n created_at\r\n body\r\n }\r\n }\r\n}\r\n```\r\n\r\n### Related Videos\r\n\r\n```\r\nquery MyQuery {\r\n relatedFeed(permlink: \"sdltslwo\", author: \"leofinance\") {\r\n items {\r\n ... on HivePost {\r\n spkvideo\r\n stats {\r\n num_comments\r\n num_votes\r\n total_hive_reward\r\n }\r\n lang\r\n title\r\n tags\r\n permlink\r\n created_at\r\n body\r\n \t}\r\n }\r\n }\r\n}\r\n```\r\n\r\n### My Published Videos\r\n\r\n```\r\nquery MyQuery {\r\n socialFeed(\r\n spkvideo: {only: true}\r\n feedOptions: {byCreator: {_eq: \"sagarkothari88\"}}\r\n ) {\r\n items {\r\n ... on HivePost {\r\n body\r\n title\r\n tags\r\n stats {\r\n num_comments\r\n num_votes\r\n total_hive_reward\r\n }\r\n spkvideo\r\n permlink\r\n lang\r\n community\r\n created_at\r\n }\r\n }\r\n }\r\n}\r\n```\r\n\r\n### 3Shorts\r\n \r\n```\r\nquery MyQuery {\r\n socialFeed(\r\n spkvideo: {only: true, isShort: true}\r\n ) {\r\n items {\r\n ... on HivePost {\r\n body\r\n title\r\n tags\r\n stats {\r\n num_comments\r\n num_votes\r\n total_hive_reward\r\n }\r\n spkvideo\r\n permlink\r\n lang\r\n community\r\n created_at\r\n }\r\n }\r\n }\r\n}\r\n```\r\n\r\n### Leaderboard\r\n\r\n*Coming soon.*\r\n\r\n### Community Details\r\n\r\n```\r\nquery MyQuery {\r\n community(id: \"hive-181335\") {\r\n title\r\n about\r\n created_at\r\n images {\r\n avatar\r\n cover\r\n }\r\n roles {\r\n role\r\n title\r\n username\r\n }\r\n subscribers\r\n }\r\n}\r\n```\r\n\r\n### Videos from a community\r\n\r\n```\r\nquery MyQuery {\r\n community(id: \"hive-181335\") {\r\n title\r\n about\r\n created_at\r\n images {\r\n avatar\r\n cover\r\n }\r\n roles {\r\n role\r\n title\r\n username\r\n }\r\n subscribers\r\n trendingFeed {\r\n items {\r\n ... on HivePost {\r\n spkvideo\r\n stats {\r\n num_comments\r\n num_votes\r\n total_hive_reward\r\n }\r\n lang\r\n title\r\n tags\r\n permlink\r\n created_at\r\n body\r\n }\r\n }\r\n }\r\n }\r\n}\r\n```\r\n\r\n---\r\n\r\n<div class=\"text-justify\">\r\n\r\n#### About the SPK Network:\r\n\r\n>The SPK Network is a decentralized Web 3.0 protocol that rewards value creators and infrastructure providers appropriately and autonomously by distributing reward tokens so that every user, creator, and platform can earn rewards on a level playing field.\r\n\r\n- Check out the SPK Network Light Paper: https://peakd.com/hive/@spknetwork/spk-network-light-paper\r\n\r\n- Our Website: https://spk.network/\r\n\r\n- Telegram Group: https://t.me/spknetwork\r\n\r\n- Discord Server: https://discord.gg/JbhQ7dREsP\r\n\r\n- SPK Network Linktree: https://linktr.ee/spknetwork\r\n\r\n---\r\n \r\n![color3speak.png](https://files.peakd.com/file/peakd-hive/threespeak/23tRvWvmwuE7SGkXfPhHY8GPxiwaVKnVtzAFwDjuXFM3gWtRS6dr2F4yK4vexmaUHERuK.png) \r\n \r\n### <center>Important Links:</center>\r\n\r\n|||\r\n|:-:|:-:|\r\n|[3Speak Linktree](https://linktr.ee/3speak)|[SPK Network Linktree](https://linktr.ee/spknetwork)|\r\n\r\n| | | | |\r\n|-|-|-|-|\r\n|[3Speak.tv](https://3speak.tv)| [3Speak Twitter](https://twitter.com/3speakonline) | [3Speak Hive Blog](https://hive.blog/@threespeak) | [3Speak Telegram](https://t.me/threespeak) |\r\n| [3Speak in Spanish](https://peakd.com/@threespeak-es/posts) | [Download Android App](https://play.google.com/store/apps/details?id=tv.threespeak.app) | [Download iOS App](https://apps.apple.com/us/app/3speak/id1614771373) | [Download Desktop App](https://github.com/spknetwork/3Speak-app/releases)\r\n| [Join 3Speak Discord](https://discord.gg/NSFS2VGj83) | [Setup Encoder Node](https://ecency.com/hive-181335/@sagarkothari88/retfajht) | [Vote for SPK Network Proposal](https://peakd.com/hive-112019/@spknetwork/spk-network-funding-proposal-rhnv7e) | [Badge Recipients](https://peakd.com/b/badge-181335/recipients) |\r\n\r\n|||\r\n|:-:|:-:|\r\n[![appStore](https://i.imgur.com/enwTLng.png)](https://apps.apple.com/us/app/3speak/id1614771373) | [![GooglePlayStore](https://i.imgur.com/6K5fgGX.png)](https://play.google.com/store/apps/details?id=tv.threespeak.app)|\r\n \r\n### <center>[Vote for 3Speak as Witness](https://vote.hive.uno/@threespeak) - [![Support @threespeak](https://i.imgur.com/2cEH8bp.png)](https://hivesigner.com/sign/account-witness-vote?witness=threespeak&approve=1)</center>\r\n \r\n### <center>[Vote for Sagarkothari88 as Witness](https://vote.hive.uno/@sagarkothari88) - [![Support @sagarkothari88](https://i.imgur.com/bTdSCuq.png)](https://hivesigner.com/sign/account-witness-vote?witness=sagarkothari88&approve=1)</center>\r\n \r\n</div>","tags":["graphql","spknetwork","3speak","threespeak","leofinance","video","ctp","development","unionidexer"]}}}"
created2023-07-26 20:19:06
last_update2023-07-26 20:19:06
depth0
children20
last_payout2023-08-02 20:19:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value53.890 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8,984
author_reputation348,970,601,774,222
root_title"SPK Network - Using GraphQL for 3Speak Mobile App"
beneficiaries
0.
accountactifit-he
weight100
1.
accountsagarkothari88
weight8,900
2.
accountspk.beneficiary
weight900
3.
accountthreespeakleader
weight100
max_accepted_payout100,000.000 HBD
percent_hbd10,000
post_id125,671,397
net_rshares221,353,564,036,931
author_curate_reward""
vote details (365)
@dhedge ·
Dhedge Call
<center>![1](https://images.hive.blog/u/dhedge/avatar?width=80&height=80)</center><br><br>This post has been selected for upvote from our token accounts by @seckorama! Based on your tags you received upvotes from the following account(s):<br> <br>- @dhedge.bonus<br>- @dhedge.leo<br>- @dhedge.ctp<br><br>@seckorama has 9 vote calls left today.<br><br>Hold 10 or more DHEDGE to unlock daily dividends and gain access to upvote rounds on your posts from @dhedge. Hold 100 or more DHEDGE to unlock thread votes. Calling in our curation accounts currently has a minimum holding requirement of 100 DHEDGE. The more DHEDGE you hold, the higher upvote you can call in. [Buy DHEDGE on Tribaldex](https://tribaldex.com/trade/DHEDGE) or earn some daily by joining one of our many delegation pools at [app.dhedge.cc](https://app.dhedge.cc).
👍  
properties (23)
authordhedge
permlinkre-lgnldgjo-20230726t203132z
categoryhive-112019
json_metadata"{"app": "beem/0.24.26"}"
created2023-07-26 20:31:33
last_update2023-07-26 20:31:33
depth1
children0
last_payout2023-08-02 20:31:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length829
author_reputation5,003,962,900,629
root_title"SPK Network - Using GraphQL for 3Speak Mobile App"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id125,671,662
net_rshares26,342,106,770
author_curate_reward""
vote details (1)
@kryptik ·
This may be an ignorant question but how does SPK benefit Hive? I believe I've asked before, so forgive me.
properties (22)
authorkryptik
permlinkre-spknetwork-ryfqr9
categoryhive-112019
json_metadata{"tags":["hive-112019"],"app":"peakd/2023.7.1"}
created2023-07-27 03:23:36
last_update2023-07-27 03:23:36
depth1
children14
last_payout2023-08-03 03:23:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length107
author_reputation38,181,454,492,763
root_title"SPK Network - Using GraphQL for 3Speak Mobile App"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id125,679,492
net_rshares0
@starkerz ·
Provides peer to peer incentivised, offchain storage, content deliver networks and encoding of content as well as offchain content indexing, easy to spin up content platforms amongst other things such as community liquidity pools, wrapping hive to btc and community tokens
properties (22)
authorstarkerz
permlinkryheju
categoryhive-112019
json_metadata{"app":"hiveblog/0.1"}
created2023-07-28 00:55:06
last_update2023-07-28 00:55:06
depth2
children8
last_payout2023-08-04 00:55:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length272
author_reputation107,541,096,129,179
root_title"SPK Network - Using GraphQL for 3Speak Mobile App"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id125,705,768
net_rshares0
@kryptik ·
When you say off-chain storage is it more focused on persistence or integrity of data? For instance, IPFS is great until no one is storing the files any longer. Is this an additional layer on top of an existing technology or is it completely novel?

properties (22)
authorkryptik
permlinkre-starkerz-rykkgi
categoryhive-112019
json_metadata{"tags":["hive-112019"],"app":"peakd/2023.7.1"}
created2023-07-29 17:55:33
last_update2023-07-29 17:55:33
depth3
children5
last_payout2023-08-05 17:55:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length250
author_reputation38,181,454,492,763
root_title"SPK Network - Using GraphQL for 3Speak Mobile App"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id125,750,782
net_rshares0
@sagarkothari88 ·
This reminds me the following intro scene of Queen of the Dragon (in game of thrones)

MISSANDEI INTRODUCING DAENERYS TARGARYEN TO JON SNOW

https://youtu.be/grnHptAAUZ8?t=17

> You stand in the presence of Daenerys Stormborn of House Targaryen, rightful heir to the Iron Throne, rightful Queen of the Andals and the First Men, Protector of the Seven Kingdoms, the Mother of Dragons, the Khaleesi of the Great Grass Sea, the Unburnt, the Breaker of Chains.

@neopch - Can you do a mix video of above context? It will gain a lot of traction.

@neopch / @starkerz giving intro of @threespeak (in the way Missandei gave intro of Queen of Dragon)
properties (22)
authorsagarkothari88
permlinkre-starkerz-2023728t134428417z
categoryhive-112019
json_metadata{"tags":["ecency"],"app":"ecency/3.0.35-vision","format":"markdown+html"}
created2023-07-28 08:14:45
last_update2023-07-28 08:14:45
depth3
children1
last_payout2023-08-04 08:14:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length642
author_reputation529,750,547,622,559
root_title"SPK Network - Using GraphQL for 3Speak Mobile App"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id125,713,094
net_rshares0
@vsc.network ·
We are working with SPK to build the next generation of BTC, LTC, DOGE and more wrapping onto HIVE in a fully decentralzied secure and autonomous manner. 
properties (22)
authorvsc.network
permlinkre-kryptik-ryiqcu
categoryhive-112019
json_metadata{"tags":["hive-112019"],"app":"peakd/2023.7.1"}
created2023-07-28 18:07:48
last_update2023-07-28 18:07:48
depth2
children4
last_payout2023-08-04 18:07:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length154
author_reputation198,705,748,841,916
root_title"SPK Network - Using GraphQL for 3Speak Mobile App"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id125,724,747
net_rshares0
@kryptik ·
What value does VSC offer that HiveEngine could not? I have some assumptions, but I was curious about your take.
properties (22)
authorkryptik
permlinkre-vscnetwork-rykkan
categoryhive-112019
json_metadata{"tags":["hive-112019"],"app":"peakd/2023.7.1"}
created2023-07-29 17:52:03
last_update2023-07-29 17:52:03
depth3
children3
last_payout2023-08-05 17:52:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length112
author_reputation38,181,454,492,763
root_title"SPK Network - Using GraphQL for 3Speak Mobile App"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id125,750,720
net_rshares0
@mdasein ·
!PGM
properties (22)
authormdasein
permlinkre-spknetwork-2023728t0025311z
categoryhive-112019
json_metadata{"tags":["hive-112019","graphql","spknetwork","3speak","threespeak","leofinance","video","ctp","development","unionidexer"],"app":"ecency/3.0.42-mobile","format":"markdown+html"}
created2023-07-27 16:00:24
last_update2023-07-27 16:00:24
depth1
children1
last_payout2023-08-03 16:00:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation14,966,838,221,313
root_title"SPK Network - Using GraphQL for 3Speak Mobile App"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id125,693,519
net_rshares0
@pgm-curator ·
<center>Sent 0.1 PGM - 0.1 LVL- 1 STARBITS  - 0.05 DEC - 1 SBT - 0.1 THG - 0.000001 SQM - 0.1 BUDS - 0.01 WOO - 0.005 SCRAP tokens </center>

<center><sub>remaining commands 13</sub></center>


**BUY AND STAKE THE PGM TO SEND A LOT OF TOKENS!**

The tokens that the command sends are: 0.1 PGM-0.1 LVL-0.1 THGAMING-0.05 DEC-15 SBT-1 STARBITS-[0.00000001 BTC (SWAP.BTC) only if you have 2500 PGM in stake or more ]

5000 PGM IN STAKE = 2x rewards! 

![image.png](https://files.peakd.com/file/peakd-hive/zottone444/23t7AyKqAfdxKEJPQrpePMW15BCPhbyrf5VoHWxhBFcEcPLjDUVVQAh9ZAopbmoJDekS6.png)
Discord [![image.png](https://files.peakd.com/file/peakd-hive/hive-135941/23wfr3mtLS9ddSpifBvh7mwLx1rN3eoaSvbwUxTngsNR1GQ8EiZTrC9P9RwZxHCCfK8e5.png)](https://discord.gg/KCvuNTEjWw)


Support the curation account @ pgm-curator with a delegation [10 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiIxMCJ9XQ..) - [50 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiI1MCJ9XQ..) - [100 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhb3RyIiwidmVzdGluZ19zaGFyZXMiOiIxMDAifV0.) - [500 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiI1MDAifV0.) - [1000 HP](https://hivesigner.com/sign/op/WyJ0cmFuc2Zlcl90b192ZXN0aW5nIix7ImZyb20iOiJfX3NpZ25lciIsInRvIjoicGdtLWN1cmF0b3IiLCJhbW91bnQiOiIxMDAwIn1d)

Get **potential** votes from @ pgm-curator by paying in PGM, here is a [guide](https://peakd.com/hive-146620/@zottone444/pay-1-pgm-and-get-4-votes-itaegn)



<sub>I'm a bot, if you want a hand ask @ zottone444</sub>

***
properties (22)
authorpgm-curator
permlinkpgm-curatormdasein1690473637908
categoryhive-112019
json_metadata{"tags":[],"app":"pgm/0.1","format":"markdown+html"}
created2023-07-27 16:00:39
last_update2023-07-27 16:00:39
depth2
children0
last_payout2023-08-03 16:00:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,917
author_reputation3,409,490,822,394
root_title"SPK Network - Using GraphQL for 3Speak Mobile App"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id125,693,525
net_rshares0
@samuelstifen ·
hello @spknetwork  thank you for sharing your story, I always follow you, always inspiring many people, thank you
properties (22)
authorsamuelstifen
permlinkre-spknetwork-2023728t163844429z
categoryhive-112019
json_metadata{"tags":["graphql","spknetwork","3speak","threespeak","leofinance","video","ctp","development","unionidexer"],"app":"ecency/3.0.35-vision","format":"markdown+html"}
created2023-07-28 09:38:48
last_update2023-07-28 09:38:48
depth1
children0
last_payout2023-08-04 09:38:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length113
author_reputation140,443,337,068,125
root_title"SPK Network - Using GraphQL for 3Speak Mobile App"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id125,714,377
net_rshares0
@seckorama ·
!DHEDGE
properties (22)
authorseckorama
permlinkre-spknetwork-2023726t223120153z
categoryhive-112019
json_metadata{"tags":["graphql","spknetwork","3speak","threespeak","leofinance","video","ctp","development","unionidexer"],"app":"ecency/3.0.35-vision","format":"markdown+html"}
created2023-07-26 20:31:21
last_update2023-07-26 20:31:21
depth1
children0
last_payout2023-08-02 20:31:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation675,124,871,982,179
root_title"SPK Network - Using GraphQL for 3Speak Mobile App"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id125,671,658
net_rshares0