OBJECT

BDDLibraryInfo

BDD Steps Library info type

link GraphQL Schema definition

1type BDDLibraryInfo {
2
3# Id of the library.
4id: String
5
6# Name of the library (only set for global libraries).
7name: String
8
9# Whether this is a global library.
10isGlobal: Boolean
11
12# Project ids linked to this library.
13projectIds: [String]
14
15}