Files
omnivore/apple/OmnivoreKit/Sources/Services/DataService/Selections/FeedItemLabelSelection.swift
2022-04-22 19:58:13 -07:00

13 lines
273 B
Swift

import Models
import SwiftGraphQL
let feedItemLabelSelection = Selection.Label {
InternalLinkedItemLabel(
id: try $0.id(),
name: try $0.name(),
color: try $0.color(),
createdAt: try $0.createdAt()?.value,
labelDescription: try $0.description()
)
}