Files
omnivore/apple/OmnivoreKit/Sources/Services/DataService/Selections/FeedItemLabelSelection.swift
2022-04-21 09:09:26 -07:00

13 lines
266 B
Swift

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