In Xcode 27 (iOS/macOS 27.0+) SwiftData natively supports sectioned queries and thus the definition of SectionedResults conflicts with the definition in this package.
Package Definition
public struct SectionedResults<SectionIdentifier, Result>
Apple SwiftData Definition (iOS 27.0+)
@MainActor @preconcurrency
var sections: SectionedResults<Element, String> { get }
I tried to fix this by explicitly use the module name SectionedQuery.SectionedResults, but this doesn't work because SectionedQuery is used for the module name and the property wrapper @SectionedQuery.
@SectionedQuery private var sectionedDisciplines: SectionedQuery.SectionedResults<String, Discipline>
See Apple Developer documentation for further details:
In Xcode 27 (iOS/macOS 27.0+) SwiftData natively supports sectioned queries and thus the definition of
SectionedResultsconflicts with the definition in this package.Package Definition
Apple SwiftData Definition (iOS 27.0+)
I tried to fix this by explicitly use the module name
SectionedQuery.SectionedResults, but this doesn't work becauseSectionedQueryis used for the module name and the property wrapper@SectionedQuery.See Apple Developer documentation for further details: