From aaf2ba4cf69a3645570d0768ea577599011f5a99 Mon Sep 17 00:00:00 2001 From: Slick Daddy Date: Sun, 3 May 2026 20:33:41 +0300 Subject: [PATCH] feat(schema): add scene_filter to findDuplicateScenes Expands the findDuplicateScenes query to accept a full SceneFilterType. This enables filtering out specific directories or tags from the duplication matching process. --- graphql/schema/schema.graphql | 1 + 1 file changed, 1 insertion(+) diff --git a/graphql/schema/schema.graphql b/graphql/schema/schema.graphql index 7f07e4579..6054faea8 100644 --- a/graphql/schema/schema.graphql +++ b/graphql/schema/schema.graphql @@ -51,6 +51,7 @@ type Query { Fractional seconds are ok: 0.5 will mean only files that have durations within 0.5 seconds between them will be matched based on PHash distance. """ duration_diff: Float + scene_filter: SceneFilterType ): [[Scene!]!]! "Return valid stream paths"