This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import $ivy.`org.clulab::processors-main:6.1.3` | |
import $ivy.`org.clulab::processors-corenlp:6.1.3` | |
import $ivy.`org.clulab::processors-odin:6.1.3` | |
import $ivy.`org.clulab::processors-modelsmain:6.1.3` | |
import $ivy.`org.clulab::processors-modelscorenlp:6.1.3` | |
import $ivy.`com.lihaoyi::pprint:0.5.3` | |
import org.clulab.odin.ExtractorEngine | |
import org.clulab.processors.Processor | |
import org.clulab.processors.clu.CluProcessor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git i/api/src/main/scala/com/goodcover/gql/ClaimSchema.scala w/api/src/main/scala/com/goodcover/gql/ClaimSchema.scala | |
index f522db989..f895e3f40 100644 | |
--- i/api/src/main/scala/com/goodcover/gql/ClaimSchema.scala | |
+++ w/api/src/main/scala/com/goodcover/gql/ClaimSchema.scala | |
@@ -117,6 +117,7 @@ class ClaimSchema(nodeInterface: InterfaceType[Ctx, AnyRef], A1VersionedPolicyTy | |
Field("policy", OptionType(A1VersionedPolicyType), resolve = _.value.selectedPolicy), | |
Field("documents", ListType(ClaimDocumentType), resolve = _.value.documents), | |
Field("lossPlace", OptionType(PlaceType), resolve = _.value.lossPlace), | |
+ Field("foo", OptionType(IntType), resolve = _ => 1), | |
// TODO: Add events here and to [[ClaimEventInterface]]; these need to be kept in sync |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package webm | |
import scala.collection.{GenMap, GenTraversableOnce} | |
import scala.language.experimental.macros | |
import scala.reflect.macros.blackbox | |
import scala.scalajs.js | |
import scala.scalajs.js.| | |
object FunctionMacro { |
OlderNewer