# Provider

This is a model used for defining the providers of the content the user wants to listen to.

provider_id
  • An integer value that uniquely identifies the current provider for the user.
provider
  • A String value holding the name of the account owner inside the source. For example ElonMusk
source
  • A String value holding the name of the source. For example twitter
added_on
  • A timestamp to show when the provider was added for the user
uid
  • The user id in which this provider is assigned to
frequency unused
  • A String value that defines how frequent contents from this provider should be scrapped. For example every min

# Graphql Schema

type Provider {
    provider_id: Int,
    provider: String,
    source: String,
    added_on: Int,
    uid: Int,
    frequency: String
}
1
2
3
4
5
6
7
8