OBJECT

ContactSocialRelationEntity

link GraphQL Schema definition

  • type ContactSocialRelationEntity {
  • # 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 Contact id.
  • id: ID!
  • # Specifies if the entity is considered deleted.
  • isDeleted: Boolean
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • # URL - HTTP address.
  • angellistUrl: String
  • # URL - HTTP address.
  • crunchbaseUrl: String
  • # URL - HTTP address.
  • disqusUrl: String
  • # Generic field wrapping sqlalchemy column, configurable by constructor.
  • #
  • # Good for one-of fields / generated fields.
  • #
  • facebookId: String
  • # URL - HTTP address.
  • facebookUrl: String
  • # URL - HTTP address.
  • flickrUrl: String
  • # URL - HTTP address.
  • foursquareUrl: String
  • # Generic field wrapping sqlalchemy column, configurable by constructor.
  • #
  • # Good for one-of fields / generated fields.
  • #
  • googleId: String
  • # URL - HTTP address.
  • googlePlusUrl: String
  • # URL - HTTP address.
  • gravatarUrl: String
  • # URL - HTTP address.
  • kloutUrl: String
  • # Generic field wrapping sqlalchemy column, configurable by constructor.
  • #
  • # Good for one-of fields / generated fields.
  • #
  • linkedinId: String
  • # URL - HTTP address.
  • linkedinUrl: String
  • # URL - HTTP address.
  • pinterestUrl: String
  • # URL - HTTP address.
  • quoraUrl: String
  • # URL - HTTP address.
  • redditUrl: String
  • # URL - HTTP address.
  • skypeUrl: String
  • # URL - HTTP address.
  • slideshareUrl: String
  • # Generic field wrapping sqlalchemy column, configurable by constructor.
  • #
  • # Good for one-of fields / generated fields.
  • #
  • twitterId: String
  • # URL - HTTP address.
  • twitterUrl: String
  • # URL - HTTP address.
  • vimeoUrl: String
  • # URL - HTTP address.
  • wordpressUrl: String
  • # URL - HTTP address.
  • xingUrl: String
  • # URL - HTTP address.
  • yahooUrl: String
  • # URL - HTTP address.
  • yelpUrl: String
  • # URL - HTTP address.
  • 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!]!
  • }