Skip to content

Commit 1ec5b0a

Browse files
authored
Merge pull request #9 from moufmouf/output_id_ref
Performing column analysis on local UNQUOTED columns
2 parents 5a3f6d8 + c4ca547 commit 1ec5b0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/TdbmFluidColumnGraphqlOptions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ private function generateFieldAnnotation(): void
6767
$fks = $this->tdbmFluidColumnOptions->then()->getDbalTable()->getForeignKeys();
6868
$isPartOfFk = false;
6969
foreach ($fks as $fk) {
70-
if (in_array($this->fluidColumn->getDbalColumn()->getName(), $fk->getLocalColumns(), true) === true) {
70+
if (in_array($this->fluidColumn->getDbalColumn()->getName(), $fk->getUnquotedLocalColumns(), true) === true) {
7171
$isPartOfFk = true;
7272
break;
7373
}

0 commit comments

Comments
 (0)