OBJECT

AccountSocialRelationEntity

link GraphQL Schema definition

  • type AccountSocialRelationEntity {
  • # Tells if the entity instance is protected against delete (Entities that need to
  • # be present in the system at any time). Delete action still may fail if entity is
  • # deletable, due some other additional validations.
  • isDeleteProtected: Boolean!
  • # Unique identifier of entity. Must match with Account id.
  • id: ID!
  • # Specifies if the entity is considered deleted.
  • isDeleted: Boolean
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • # AngelList profile URL of the account.
  • angellistUrl: String
  • # Crunchbase profile URL of the account.
  • crunchbaseUrl: String
  • # Disqus profile URL of the account.
  • disqusUrl: String
  • # Facebook page or profile id of the account.
  • facebookId: String
  • # Facebook profile URL of the account.
  • facebookUrl: String
  • # Flickr profile URL of the account.
  • flickrUrl: String
  • # Foursquare profile URL of the account.
  • foursquareUrl: String
  • # Google business or profile id of the account.
  • googleId: String
  • # Google+ profile URL of the account.
  • googlePlusUrl: String
  • # Gravatar profile URL of the account.
  • gravatarUrl: String
  • # Klout profile URL of the account.
  • kloutUrl: String
  • # LinkedIn company or profile id of the account.
  • linkedinId: String
  • # LinkedIn profile URL of the account.
  • linkedinUrl: String
  • # Pinterest profile URL of the account.
  • pinterestUrl: String
  • # Quora profile URL of the account.
  • quoraUrl: String
  • # Reddit profile URL of the account.
  • redditUrl: String
  • # Skype contact URL or username of the account.
  • skypeUrl: String
  • # SlideShare profile URL of the account.
  • slideshareUrl: String
  • # Twitter (X) user id of the account.
  • twitterId: String
  • # Twitter (X) profile URL of the account.
  • twitterUrl: String
  • # Vimeo profile URL of the account.
  • vimeoUrl: String
  • # WordPress site URL of the account.
  • wordpressUrl: String
  • # XING profile URL of the account.
  • xingUrl: String
  • # Yahoo profile URL of the account.
  • yahooUrl: String
  • # Yelp business URL of the account.
  • yelpUrl: String
  • # YouTube channel URL of the account.
  • youtubeUrl: String
  • # Revision when entity was lastly changed.
  • revision: Int
  • # Checks which permissions current user has on concrete entity instance.
  • #
  • # Arguments
  • # permissions: [Not documented]
  • instancePermissions(permissions: [EntityPermsEnum!]!): [EntityPermsEnum!]!
  • }