OBJECT
Plugin
link GraphQL Schema definition
- type Plugin {
- # Plugin ID
- : Int!
- # Name
- : String!
- # Plugin Source
- : PluginSource!
- # Plugin Family Name
- : String!
- : PluginSeverity!
- : Float
- : VprLevel!
- : String
- : String
- : Float
- # Total affected assets on the plugin, with no regard to the filter
- : Int!
- # Total fixed assets on the plugin, with no regard to the filter
- : Int!
- # Assets affected by the plugin
- #
- # Arguments
- # filter: [Not documented]
- # search: [Not documented]
- # sort: [Not documented]
- # slowCount: When requesting totalCount set this to true to wait
- # for count query to complete.
- # Otherwise, countTimeout is used to limit the execution time, resulting in -1
- # when limit is reached.
- # countTimeout: Time (in milliseconds) to wait for count query to
- # return.
- # Only applicable when slowCount is not set.
- # after: Returns the items in the list that come after the
- # specified cursor.
- # first: Returns the first n items from the list.
- # before: Returns the items in the list that come before the
- # specified cursor.
- # last: Returns the last n items from the list.
- (
- : AssetExpressionsParams,
- : String,
- : [AssetSortParams!],
- : Boolean,
- : Int,
- : String,
- : Int,
- : String,
- : Int
- ): AssetConnection!
- # fixed assets that were by the plugin
- #
- # Arguments
- # filter: [Not documented]
- # search: [Not documented]
- # sort: [Not documented]
- # slowCount: When requesting totalCount set this to true to wait
- # for count query to complete.
- # Otherwise, countTimeout is used to limit the execution time, resulting in -1
- # when limit is reached.
- # countTimeout: Time (in milliseconds) to wait for count query to
- # return.
- # Only applicable when slowCount is not set.
- # after: Returns the items in the list that come after the
- # specified cursor.
- # first: Returns the first n items from the list.
- # before: Returns the items in the list that come before the
- # specified cursor.
- # last: Returns the last n items from the list.
- (
- : AssetExpressionsParams,
- : String,
- : [AssetSortParams!],
- : Boolean,
- : Int,
- : String,
- : Int,
- : String,
- : Int
- ): AssetConnection!
- : PluginDetails!
- # Plugin hits of this plugin for a specific asset
- #
- # Arguments
- # id: [Not documented]
- # after: Returns the items in the list that come after the
- # specified cursor.
- # first: Returns the first n items from the list.
- # before: Returns the items in the list that come before the
- # specified cursor.
- # last: Returns the last n items from the list.
- (: ID!, : String, : Int, : String, : Int): PluginHitConnection!
- }